summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--compile.c1
-rwxr-xr-xtool/instruction.rb1
2 files changed, 0 insertions, 2 deletions
diff --git a/compile.c b/compile.c
index f878eda8bb..ab586dc47b 100644
--- a/compile.c
+++ b/compile.c
@@ -961,7 +961,6 @@ new_callinfo(rb_iseq_t *iseq, ID mid, int argc, VALUE block, unsigned long flag)
static INSN *
new_insn_send(rb_iseq_t *iseq, int line_no, VALUE id, VALUE argc, VALUE block, VALUE flag)
{
-
VALUE *operands = (VALUE *)compile_data_alloc(iseq, sizeof(VALUE) * 1);
operands[0] = (VALUE)new_callinfo(iseq, SYM2ID(id), FIX2INT(argc), block, FIX2INT(flag));
return new_insn_core(iseq, line_no, BIN(send), 1, operands);
diff --git a/tool/instruction.rb b/tool/instruction.rb
index c6e0c40c0c..fb07d778bc 100755
--- a/tool/instruction.rb
+++ b/tool/instruction.rb
@@ -72,7 +72,6 @@ class RubyVM
elsif (t == 'CALL_INFO' && ((re = /\b#{v}\b/n) =~ @sp_inc))
ret << " CALL_INFO #{v} = (CALL_INFO)(opes[#{i}]);\n"
end
-
}
@defopes.each_with_index{|((t, var), val), i|