summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-02 08:20:35 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-02 08:20:35 +0000
commitcfd1157f1123998bde7b93212bdb111a65b82414 (patch)
tree418f1f7d9a8652ed71e1ffbef0afbb59281111a3 /vm_core.h
parenta9c0cf4ff06ecbda16b1fcf9d16cb252becd9453 (diff)
* iseq.h: introduce ISEQ_ORIGINAL_ISEQ() and
ISEQ_ORIGINAL_ISEQ_ALLOC() macro. * compile.c: use them to access original iseq buffer. * iseq.c: ditto. * vm_core.h: rename iseq field to support this fix. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52862 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_core.h b/vm_core.h
index 103b974afe..377b6a964e 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -392,7 +392,7 @@ struct rb_iseq_variable_body {
/* original iseq, before encoding
* used for debug/dump (TODO: union with compile_data) */
- VALUE *iseq;
+ VALUE *iseq_;
};
/* T_IMEMO/iseq */