Remove a meaningless local variable assignment

* iseq.c (rb_iseq_disasm_insn): Remove a meaningless
  local variable assignment. `insn` is never changed
  in this function, so a result of `insn_op_types(insn)`
  is also never changed.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59629 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
yui-knk 2017-08-21 13:38:35 +00:00
Родитель aaac3f8cb4
Коммит 29fa7a9f91
1 изменённых файлов: 0 добавлений и 1 удалений

1
iseq.c
Просмотреть файл

@ -1448,7 +1448,6 @@ rb_iseq_disasm_insn(VALUE ret, const VALUE *code, size_t pos,
}
for (j = 0; types[j]; j++) {
const char *types = insn_op_types(insn);
VALUE opstr = rb_insn_operand_intern(iseq, insn, j, code[pos + j + 1],
len, pos, &code[pos + j + 2],
child);