From 2138f24c7017298c9fffa6d3de7a53cb55b567b4 Mon Sep 17 00:00:00 2001 From: mame Date: Fri, 10 Aug 2018 07:45:16 +0000 Subject: insns.def (invokesuper): remove a dummy receiever flag hack for ZSUPER This is just a refactoring. The receiver of "invokesuper" was a boolean to represent if it is ZSUPER or not. This was used in vm_search_super_method to prohibit ZSUPER call in define_method. (It is currently prohibited because of the limitation of the implementation.) This change removes the hack by introducing an explicit flag, VM_CALL_SUPER, to signal the information. Now, the implementation of "invokesuper" is consistent with "send" instruction. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64268 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- iseq.c | 1 + 1 file changed, 1 insertion(+) (limited to 'iseq.c') diff --git a/iseq.c b/iseq.c index 7744e3f54f..bb53518168 100644 --- a/iseq.c +++ b/iseq.c @@ -1775,6 +1775,7 @@ rb_insn_operand_intern(const rb_iseq_t *iseq, CALL_FLAG(BLOCKISEQ); CALL_FLAG(TAILCALL); CALL_FLAG(SUPER); + CALL_FLAG(ZSUPER); CALL_FLAG(KWARG); CALL_FLAG(KW_SPLAT); CALL_FLAG(OPT_SEND); /* maybe not reachable */ -- cgit v1.2.3