diff options
author | Takashi Kokubun <[email protected]> | 2025-02-14 17:49:53 -0800 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2025-04-18 21:52:58 +0900 |
commit | 562c35a560e2f99b9ab6b4ff352e4cf7a73f050e (patch) | |
tree | 1700951076720a166a4e136fa610cffa1e9ba8b8 /zjit/src/state.rs | |
parent | 53bee25068d11877b034af53797cf6e5d3d8e2be (diff) |
Resurrect asm comment support
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/13131
Diffstat (limited to 'zjit/src/state.rs')
-rw-r--r-- | zjit/src/state.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zjit/src/state.rs b/zjit/src/state.rs index 538f3c6989..e5606ea36f 100644 --- a/zjit/src/state.rs +++ b/zjit/src/state.rs @@ -50,7 +50,7 @@ impl ZJITState { ); let mem_block = Rc::new(RefCell::new(mem_block)); - CodeBlock::new(mem_block.clone()) + CodeBlock::new(mem_block.clone(), options.dump_disasm) }; #[cfg(test)] let cb = CodeBlock::new_dummy(); |