diff options
Diffstat (limited to 'tool/ruby_vm/views/mjit_compile.inc.erb')
-rw-r--r-- | tool/ruby_vm/views/mjit_compile.inc.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/ruby_vm/views/mjit_compile.inc.erb b/tool/ruby_vm/views/mjit_compile.inc.erb index 7437a44855..47492a0ed8 100644 --- a/tool/ruby_vm/views/mjit_compile.inc.erb +++ b/tool/ruby_vm/views/mjit_compile.inc.erb @@ -63,4 +63,4 @@ switch (insn) { /* if next_pos is already compiled, next instruction won't be compiled in C code and needs `goto`. */ if ((next_pos < body->iseq_size && status->compiled_for_pos[next_pos])) - fprintf(f, " goto label_%d;\n", next_pos); + fprintf(f, "goto label_%d;\n", next_pos); |