* iseq.c (rb_iseq_trace_set): remove a wrong assertion.
  This assertion checked `insn` is `trace_` prefix instruction
  but threaded code `insn` is original code.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60820 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2017-11-17 07:29:07 +00:00
Родитель c7ae8af92f
Коммит d2bb08ecf0
1 изменённых файлов: 0 добавлений и 1 удалений

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

@ -2343,7 +2343,6 @@ rb_iseq_trace_set(const rb_iseq_t *iseq, rb_event_flag_t turnon_events)
}
}
else if (TRACE_INSN_P(insn, iseq_encoded[i])) {
VM_ASSERT(insn - VM_INSTRUCTION_SIZE/2 >= 0);
iseq_encoded[i] = INSN_CODE(insn);
}
i += insn_len(insn);