summaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-27 11:33:01 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-27 11:33:01 +0000
commit41e9245e853c6d1f02a60f431afa87aeb7749787 (patch)
treefcd1b4f3b33b42d8aff8b95372d8f6996adc79cb /compile.c
parentc44e2cdd58efbe13ed3b57cd56f98fc81ea64c2e (diff)
* compile.c (iseq_translate_direct_threaded_code): fix prototype
function name. * vm.h: add correct cast. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12634 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compile.c b/compile.c
index a710f760d9..4836118e2a 100644
--- a/compile.c
+++ b/compile.c
@@ -222,7 +222,7 @@ iseq_translate_direct_threaded_code(rb_iseq_t *iseq)
#if OPT_DIRECT_THREADED_CODE
void **table = (void **)vm_eval(0);
#else
- extern void **insns_address_table();
+ extern void **get_insns_address_table();
void **table = get_insns_address_table();
#endif
int i;