summaryrefslogtreecommitdiff
path: root/vm.c
diff options
context:
space:
mode:
authorAlan Wu <[email protected]>2025-02-06 12:10:43 -0500
committerTakashi Kokubun <[email protected]>2025-04-18 21:52:56 +0900
commit1d95139bf6bee795fb5dc47da9d0ae663bc69c8c (patch)
tree6d13993fb0133e5ee0439ee7aa1482ba0c471626 /vm.c
parent0f9557e9a7992c91c4aba9d8cf88c0695445e611 (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.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/vm.c b/vm.c
index d43deb43cd..e2cdfda0cb 100644
--- a/vm.c
+++ b/vm.c
@@ -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;
}