From d409017bc6e7d5521111e607afcdc5e2dc25bbef Mon Sep 17 00:00:00 2001 From: k0kubun Date: Tue, 6 Feb 2018 14:27:15 +0000 Subject: mjit_compile.c: fix inconsistent indentation and style of generated code. I've used 2-space indentation at first but at some moment I started to use insns.def contents for generated code. So the 4-space indentation was introduced. But it does no longer make sense. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62255 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- tool/ruby_vm/views/mjit_compile.inc.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tool/ruby_vm') 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); -- cgit v1.2.3