diff options
author | Alan Wu <[email protected]> | 2025-02-06 12:10:43 -0500 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2025-04-18 21:52:56 +0900 |
commit | 1d95139bf6bee795fb5dc47da9d0ae663bc69c8c (patch) | |
tree | 6d13993fb0133e5ee0439ee7aa1482ba0c471626 /vm.c | |
parent | 0f9557e9a7992c91c4aba9d8cf88c0695445e611 (diff) |
`miniruby --zjit -e nil` runs through iseq_to_ssa
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/13131
Diffstat (limited to 'vm.c')
-rw-r--r-- | vm.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -496,6 +496,9 @@ jit_compile_exception(rb_execution_context_t *ec) if (body->jit_exception_calls == rb_yjit_call_threshold) { rb_yjit_compile_iseq(iseq, ec, true); } + + + } return body->jit_exception; } |