summaryrefslogtreecommitdiffstats
path: root/insns.def
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-16 00:01:06 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-16 00:01:06 +0000
commit430c98990b0449a1adbad02377e7ae6c642120d9 (patch)
tree7ddf4d986bccffe75a4afb1620fc58015d46fecb /insns.def
parentdd460dc40875258aae373f6eb16220940603dc22 (diff)
downloadruby-430c98990b0449a1adbad02377e7ae6c642120d9.tar.gz
ruby-430c98990b0449a1adbad02377e7ae6c642120d9.tar.xz
ruby-430c98990b0449a1adbad02377e7ae6c642120d9.zip
* node.h, vm_core.h, variable.c: rename global_entry to rb_global_entry.
* compile.c, insns.def, iseq.c, vm_insnhelper.h: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24135 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'insns.def')
-rw-r--r--insns.def2
1 files changed, 1 insertions, 1 deletions
diff --git a/insns.def b/insns.def
index f9310bec6..724f086dc 100644
--- a/insns.def
+++ b/insns.def
@@ -761,7 +761,7 @@ defined
klass = vm_get_cbase(GET_ISEQ(), GET_LFP(), GET_DFP());
break;
case DEFINED_GVAR:
- if (rb_gvar_defined((struct global_entry *)(obj & ~1))) {
+ if (rb_gvar_defined((struct rb_global_entry *)(obj & ~1))) {
expr_type = "global-variable";
}
break;