mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fix a wrong argument of vm_exec on JIT cancel
This commit is contained in:
parent
72aa4dd183
commit
90969edf9b
1 changed files with 1 additions and 1 deletions
|
@ -256,7 +256,7 @@ compile_inlined_cancel_handler(FILE *f, const struct rb_iseq_constant_body *body
|
|||
}
|
||||
// We're not just returning Qundef here so that caller's normal cancel handler can
|
||||
// push back `stack` to `cfp->sp`.
|
||||
fprintf(f, " return vm_exec(ec, ec->cfp);\n");
|
||||
fprintf(f, " return vm_exec(ec, FALSE);\n");
|
||||
}
|
||||
|
||||
// Print the block to cancel JIT execution.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue