mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
iseq.c: fix build error when VM_CHECK_MODE is enabled
Follow up of r61534. Sorry. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61535 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fd950df795
commit
e1fce44ca6
1 changed files with 1 additions and 1 deletions
2
iseq.c
2
iseq.c
|
@ -1299,7 +1299,7 @@ static const struct iseq_insn_info_entry *
|
|||
get_insn_info_linear_search(const rb_iseq_t *iseq, size_t pos)
|
||||
{
|
||||
size_t i = 0, size = iseq->body->insns_info.size;
|
||||
const struct iseq_insn_info_entry *insns_info = iseq->body->insns_info;
|
||||
const struct iseq_insn_info_entry *insns_info = iseq->body->insns_info.body;
|
||||
const int debug = 0;
|
||||
|
||||
if (debug) {
|
||||
|
|
Loading…
Add table
Reference in a new issue