From 260d02d91d769f4ef3075e9248e1aae73e22a22b Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 3 Aug 2012 16:56:08 +0000 Subject: vm_insnhelper.c: no recv * vm_insnhelper.c (vm_search_normal_superclass): no longer needs receiver, klass is always unique in the ancestors now. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36616 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- insns.def | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'insns.def') diff --git a/insns.def b/insns.def index 24e358d16f..fd102a63f5 100644 --- a/insns.def +++ b/insns.def @@ -828,7 +828,7 @@ defined case DEFINED_ZSUPER:{ const rb_method_entry_t *me = GET_CFP()->me; if (me) { - VALUE klass = vm_search_normal_superclass(me->klass, GET_SELF()); + VALUE klass = vm_search_normal_superclass(me->klass); ID id = me->def ? me->def->original_id : me->called_id; if (rb_method_boundp(klass, id, 0)) { expr_type = "super"; @@ -1039,7 +1039,7 @@ invokesuper flag = VM_CALL_SUPER_BIT | VM_CALL_FCALL_BIT; recv = GET_SELF(); - vm_search_superclass(GET_CFP(), GET_ISEQ(), recv, TOPN(num), &id, &klass); + vm_search_superclass(GET_CFP(), GET_ISEQ(), TOPN(num), &id, &klass); ip = GET_ISEQ(); while (ip && !ip->klass) { -- cgit v1.2.3