summaryrefslogtreecommitdiff
path: root/iseq.c
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
commit94664d6d0cc8042e98c7256ec28a751d3e5b687c (patch)
tree7ddf4d986bccffe75a4afb1620fc58015d46fecb /iseq.c
parentd4628c0bcd0479b15593cfa4ed0907b4360857e0 (diff)
* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@24135 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'iseq.c')
-rw-r--r--iseq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/iseq.c b/iseq.c
index 643e399c06..d09f397f9d 100644
--- a/iseq.c
+++ b/iseq.c
@@ -791,7 +791,7 @@ insn_operand_intern(rb_iseq_t *iseq,
}
case TS_GENTRY:
{
- struct global_entry *entry = (struct global_entry *)op;
+ struct rb_global_entry *entry = (struct rb_global_entry *)op;
ret = rb_str_dup(rb_id2str(entry->id));
}
break;
@@ -1213,7 +1213,7 @@ iseq_data_to_ary(rb_iseq_t *iseq)
break;
case TS_GENTRY:
{
- struct global_entry *entry = (struct global_entry *)*seq;
+ struct rb_global_entry *entry = (struct rb_global_entry *)*seq;
rb_ary_push(ary, ID2SYM(entry->id));
}
break;