aboutsummaryrefslogtreecommitdiffstats
path: root/iseq.c
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-01 09:30:06 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-01 09:30:06 +0000
commite1fce44ca60cd09339824e9b13d2397f2795cf4a (patch)
tree289db40e1641ef1ae504e9c7c00e9c729d72e3b3 /iseq.c
parentfd950df795ffd06b4e1532b881ad4273a2af90e2 (diff)
downloadruby-e1fce44ca60cd09339824e9b13d2397f2795cf4a.tar.gz
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
Diffstat (limited to 'iseq.c')
-rw-r--r--iseq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/iseq.c b/iseq.c
index 2011d6bf0a..2b8cebab94 100644
--- a/iseq.c
+++ b/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) {