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 () | |
tree | 1700951076720a166a4e136fa610cffa1e9ba8b8 /zjit/src/lib.rs | |
parent | 53bee25068d11877b034af53797cf6e5d3d8e2be (diff) |
Resurrect asm comment support
Notes: Merged: https://.com/ruby/ruby/pull/13131
-rw-r--r-- | zjit/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -10,6 +10,7 @@ mod cast; mod virtualmem; mod asm; mod backend; mod disasm; mod options; @@ -93,7 +94,7 @@ pub extern "C" fn rb_zjit_iseq_gen_entry_point(iseq: IseqPtr, _ec: EcPtr) -> *co // Compile SSA IR into machine code let cb = ZJITState::get_code_block(); - match gen_function(cb, &ssa) { Some(start_ptr) => start_ptr.raw_ptr(cb), // Compilation failed, continue executing in the interpreter only |