From a78e77ffa6aa19cfe0efba922297a1cf11d04934 Mon Sep 17 00:00:00 2001 From: ko1 Date: Fri, 13 Nov 2015 18:01:59 +0000 Subject: * vm.c (vm_define_method): refactoring. * get CREF in this function. * cbase is no longer needed (CREF_CLASS(cref) is enough). * compile.c: RubyVM::FrozenCore.define_method only accept 2 args. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52563 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- compile.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'compile.c') diff --git a/compile.c b/compile.c index 3e3499405a..9e17f9b3a0 100644 --- a/compile.c +++ b/compile.c @@ -5258,10 +5258,9 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped) debugp_param("defn/iseq", (VALUE)method_iseq); ADD_INSN1(ret, line, putspecialobject, INT2FIX(VM_SPECIAL_OBJECT_VMCORE)); - ADD_INSN1(ret, line, putspecialobject, INT2FIX(VM_SPECIAL_OBJECT_CBASE)); ADD_INSN1(ret, line, putobject, ID2SYM(node->nd_mid)); ADD_INSN1(ret, line, putiseq, method_iseq); - ADD_SEND (ret, line, id_core_define_method, INT2FIX(3)); + ADD_SEND (ret, line, id_core_define_method, INT2FIX(2)); if (poped) { ADD_INSN(ret, line, pop); -- cgit v1.2.3