diff options
Diffstat (limited to 'yjit_codegen.c')
-rw-r--r-- | yjit_codegen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yjit_codegen.c b/yjit_codegen.c index f52de12bf2..b1fa38813a 100644 --- a/yjit_codegen.c +++ b/yjit_codegen.c @@ -295,7 +295,7 @@ yjit_entry_prologue(void) mov(cb, REG_SP, member_opnd(REG_CFP, rb_control_frame_t, sp)); // Setup cfp->jit_return - // TODO: this could use a IP relative LEA instead of an 8 byte immediate + // TODO: this could use an IP relative LEA instead of an 8 byte immediate mov(cb, REG0, const_ptr_opnd(interp_exit)); mov(cb, member_opnd(REG_CFP, rb_control_frame_t, jit_return), REG0); |