diff options
Diffstat (limited to 'yjit/src/codegen.rs')
-rw-r--r-- | yjit/src/codegen.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yjit/src/codegen.rs b/yjit/src/codegen.rs index b34cc7409a..93d835d7f1 100644 --- a/yjit/src/codegen.rs +++ b/yjit/src/codegen.rs @@ -297,9 +297,9 @@ fn jit_prepare_routine_call( /// Record the current codeblock write position for rewriting into a jump into /// the outlined block later. Used to implement global code invalidation. fn record_global_inval_patch(asm: &mut Assembler, outline_block_target_pos: CodePtr) { - asm.pos_marker(Box::new(move |code_ptr| { + asm.pos_marker(move |code_ptr| { CodegenGlobals::push_global_inval_patch(code_ptr, outline_block_target_pos); - })); + }); } /// Verify the ctx's types and mappings against the compile-time stack, self, |