aboutsummaryrefslogtreecommitdiffstats
path: root/iseq.c
diff options
context:
space:
mode:
authoraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-03-08 00:23:14 +0000
committeraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-03-08 00:23:14 +0000
commitc49418522dec35ce043e0a9736fae32217002384 (patch)
treeec395914e069f04d77a08f9af7fb8bbc229227e0 /iseq.c
parent835f040be29b1a32f93428a6a90de7978b7c2779 (diff)
downloadruby-c49418522dec35ce043e0a9736fae32217002384.tar.gz
* compile.c: iseq_compile -> rb_iseq_compile.
* iseq.c: ditto. * intern.h: provide function prototype of Init_jump. * eval_jump.h (Init_jump): declare function type. * thread.c: platform-dependent functions should be surrounded by #ifdef. * iseq.c (iseq_data_to_ary): remove unused variable. * compile.c (set_arguments): ditto. * thread.c (set_unblock_function): ditto. * thread_pthread.ci: reduce printf warning. * vm_dump.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12010 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 106c4dae8f..06ca48f613 100644
--- a/iseq.c
+++ b/iseq.c
@@ -272,7 +272,7 @@ rb_iseq_new_with_bopt_and_opt(NODE *node, VALUE name, VALUE filename,
iseq->self = self;
prepare_iseq_build(iseq, name, filename, parent, type, bopt, option);
- iseq_compile(self, node);
+ rb_iseq_compile(self, node);
cleanup_iseq_build(iseq);
return self;
}
@@ -1076,7 +1076,7 @@ cdhash_each(VALUE key, VALUE value, VALUE ary)
VALUE
iseq_data_to_ary(rb_iseq_t *iseq)
{
- int i, pos, opt = 0;
+ int i, pos;
VALUE *seq;
VALUE val = rb_ary_new();