summaryrefslogtreecommitdiff
path: root/insns.def
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-26 22:51:33 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-26 22:51:33 +0000
commit8a1b1c2b41b475cc40a8013623b5b6fe5381d6da (patch)
tree7fdb3d79de934510585bc5572642eaefb8e1471e /insns.def
parent3623df9bc68adf445814f2d1ec5bc81e7e0450bb (diff)
* yarvcore.h, vm.h: rename th_invoke_yield() to th_yield().
* blockinlining.c: ditto. * eval.c: ditto. * vm.c, insns.def: rename th_invoke_yield_cfunc() to th_yield_with_cfunc(). * yarvcore.h, yarvcore.c: rename theYarvVM to ruby_current_vm and yarvCurrentThread to ruby_current_thread. remove yarvVMArray. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11898 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'insns.def')
-rw-r--r--insns.def4
1 files changed, 2 insertions, 2 deletions
diff --git a/insns.def b/insns.def
index 13c468cfc4..801f94b97c 100644
--- a/insns.def
+++ b/insns.def
@@ -1360,8 +1360,8 @@ invokeblock
/* unreachable */
}
else {
- val = th_invoke_yield_cfunc(th, block, block->self,
- num, STACK_ADDR_FROM_TOP(num));
+ val = th_yield_with_cfunc(th, block, block->self,
+ num, STACK_ADDR_FROM_TOP(num));
POPN(num);
}
}