aboutsummaryrefslogtreecommitdiffstats
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
commit19b366998feb811a976cb8de46c60bc1bf61b124 (patch)
tree418f1f7d9a8652ed71e1ffbef0afbb59281111a3 /vm_core.h
parent156c7e33e11c1c0f571ae706392a5c6efbc7bcd5 (diff)
downloadruby-19b366998feb811a976cb8de46c60bc1bf61b124.tar.gz
* 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 */