@@ -6,7 +6,7 @@ use std::rc::Rc;
66use std:: sync:: { Arc , Mutex } ;
77use crate :: bitset:: BitSet ;
88use crate :: codegen:: { local_size_and_idx_to_ep_offset, perf_symbol_range_start, perf_symbol_range_end} ;
9- use crate :: cruby:: { CfpPtr , IseqPtr , Qundef , RUBY_OFFSET_CFP_ISEQ , RUBY_OFFSET_CFP_JIT_RETURN , RUBY_OFFSET_CFP_PC , RUBY_OFFSET_CFP_SP , SIZEOF_VALUE_I32 , vm_stack_canary} ;
9+ use crate :: cruby:: { IseqPtr , Qundef , RUBY_OFFSET_CFP_ISEQ , RUBY_OFFSET_CFP_PC , RUBY_OFFSET_CFP_SP , SIZEOF_VALUE_I32 , vm_stack_canary} ;
1010use crate :: hir:: { Invariant , SideExitReason } ;
1111use crate :: hir;
1212use crate :: options:: { TraceExits , PerfMap , get_option} ;
@@ -2639,8 +2639,8 @@ impl Assembler
26392639 asm_comment ! ( asm, "save cfp->iseq" ) ;
26402640 asm. store ( Opnd :: mem ( 64 , CFP , RUBY_OFFSET_CFP_ISEQ ) , VALUE :: from ( * iseq) . into ( ) ) ;
26412641
2642- asm_comment ! ( asm, "save cfp->jit_return" ) ;
2643- asm. store ( Opnd :: mem ( 64 , CFP , RUBY_OFFSET_CFP_JIT_RETURN ) , 0 . into ( ) ) ;
2642+ // asm_comment!(asm, "save cfp->jit_return");
2643+ // asm.store(Opnd::mem(64, CFP, RUBY_OFFSET_CFP_JIT_RETURN), 0.into());
26442644 }
26452645
26462646 /// Tear down the JIT frame and return to the interpreter.
0 commit comments