summaryrefslogtreecommitdiff
path: root/insns.def
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-26 02:26:49 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-26 02:26:49 +0000
commit6a8d0097095d975fbd19cf62c83645b51886025b (patch)
tree639da612ae29e88b7c46437933d5994076343cb0 /insns.def
parent767848e0b782152fa2652a37532950f42e0c3012 (diff)
* compile.c (iseq_compile_each): call on special object instead of
self. since stabby lambda is a syntax, so it should not be affected by the context. [ruby-core:42349][Bug #5966] * insns.def (send): no special deal for FCALL. self should be put on TOS instead. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34819 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 59a98c0804..4c82df4c33 100644
--- a/insns.def
+++ b/insns.def
@@ -1012,7 +1012,7 @@ send
ID id = op_id;
/* get receiver */
- recv = (flag & VM_CALL_FCALL_BIT) ? GET_SELF() : TOPN(num);
+ recv = TOPN(num);
klass = CLASS_OF(recv);
me = vm_method_search(id, klass, ic);
CALL_METHOD(num, blockptr, flag, id, me, recv);