diff options
author | git <[email protected]> | 2025-05-26 02:44:58 +0000 |
---|---|---|
committer | git <[email protected]> | 2025-05-26 02:44:58 +0000 |
commit | aa00a2d07bf56fc5def659e06104eb3173803ca7 () | |
tree | 7c6a13a3a44fb1b91df0d71cbe32a1483f4ab4db /yjit.c | |
parent | aad9fa285398d48b5647f8a36922b8d817a24156 (diff) |
* remove trailing spaces. [ci skip]
-rw-r--r-- | yjit.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -746,11 +746,11 @@ void rb_yjit_compile_iseq(const rb_iseq_t *iseq, rb_execution_context_t *ec, bool jit_exception) { RB_VM_LOCKING() { rb_vm_barrier(); - // Compile a block version starting at the current instruction uint8_t *rb_yjit_iseq_gen_entry_point(const rb_iseq_t *iseq, rb_execution_context_t *ec, bool jit_exception); // defined in Rust uintptr_t code_ptr = (uintptr_t)rb_yjit_iseq_gen_entry_point(iseq, ec, jit_exception); - if (jit_exception) { iseq->body->jit_exception = (rb_jit_func_t)code_ptr; } |