summaryrefslogtreecommitdiff
path: root/insns.def
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-07-04 02:11:37 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-07-04 02:11:37 +0000
commita7e1820a9f9c0b6c84c281c171c105a34aa16738 (patch)
tree5de8ea761af4e4ac30dc229518093bacc55d2ee2 /insns.def
parent07132e0675ecacd9215504e9f9631fa1f83b7670 (diff)
__callee__ fix
* eval.c (rb_frame_callee, rb_f_callee_name): fix to return the called id. * vm_insnhelper.c (vm_push_frame): set proper method entry. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36301 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 e256a83758..ab40d30634 100644
--- a/insns.def
+++ b/insns.def
@@ -974,7 +974,7 @@ defineclass
vm_push_frame(th, class_iseq, VM_FRAME_MAGIC_CLASS,
klass, VM_ENVVAL_BLOCK_PTR(GET_BLOCK_PTR()),
class_iseq->iseq_encoded, GET_SP(),
- class_iseq->local_size);
+ class_iseq->local_size, 0);
RESTORE_REGS();
INC_VM_STATE_VERSION();