aboutsummaryrefslogtreecommitdiffstats
path: root/vm_core.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-02 07:52:12 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-02 07:52:12 +0000
commit7afefea564bc6520962c9eaa457d85c19b64d13c (patch)
tree6c47b202124e1e32b07ef52c2830ddae9ca5d596 /vm_core.h
parente917af64014746de9658e1a9ddb3fd134520c0e6 (diff)
downloadruby-7afefea564bc6520962c9eaa457d85c19b64d13c.tar.gz
* iseq.h: introduce ISEQ_COMPILE_DATA() macro.
* compile.c, iseq.c: use ISEQ_COMPILE_DATA(). * vm_core.h: rename compile_data field to support this fix. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52858 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 da1455266d..fa71b82f9e 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -399,7 +399,7 @@ struct rb_iseq_variable_body {
/* typedef rb_iseq_t is in method.h */
struct rb_iseq_struct {
VALUE flags;
- struct iseq_compile_data *compile_data; /* used at compile time */
+ struct iseq_compile_data *compile_data_; /* used at compile time */
struct rb_iseq_constant_body *body;
struct rb_iseq_variable_body *variable_body;
VALUE dummy2;