mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fix typo in comment
This commit is contained in:
parent
a0790e6335
commit
7704a6990a
1 changed files with 1 additions and 1 deletions
|
@ -707,7 +707,7 @@ yjit_gen_block(block_t *block, rb_execution_context_t *ec)
|
||||||
// If we can't compile this instruction
|
// If we can't compile this instruction
|
||||||
// exit to the interpreter and stop compiling
|
// exit to the interpreter and stop compiling
|
||||||
if (status == YJIT_CANT_COMPILE) {
|
if (status == YJIT_CANT_COMPILE) {
|
||||||
// TODO: if the codegen funcion makes changes to ctx and then return YJIT_CANT_COMPILE,
|
// TODO: if the codegen function makes changes to ctx and then return YJIT_CANT_COMPILE,
|
||||||
// the exit this generates would be wrong. We could save a copy of the entry context
|
// the exit this generates would be wrong. We could save a copy of the entry context
|
||||||
// and assert that ctx is the same here.
|
// and assert that ctx is the same here.
|
||||||
yjit_gen_exit(jit.pc, ctx, cb);
|
yjit_gen_exit(jit.pc, ctx, cb);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue