From 4bdb5ced9a06532d33e6aa0dd6be49e863b31d22 Mon Sep 17 00:00:00 2001 From: ko1 Date: Mon, 25 Jun 2007 02:44:20 +0000 Subject: * gc.h: add RUBY_ prefix to debug macros. * cont.c, proc.c, yarvcore.c, * gc.c: define ruby_gc_debug_indent variable to debug mark/free. * vm.c, insnhelper.ci: rename some functions to vm_* or rb_vm_*. move some functions, definitions, declarations to suitable files. * eval.c, yarvcore.h, eval_error.ci, insnhelper.ci: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12610 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- insns.def | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'insns.def') diff --git a/insns.def b/insns.def index 7487b6c2bd..2fa8f1fae3 100644 --- a/insns.def +++ b/insns.def @@ -962,7 +962,7 @@ defined ip = ip->parent_iseq; } if (ip) { - VALUE klass = search_super_klass(ip->klass, GET_SELF()); + VALUE klass = vm_search_super_klass(ip->klass, GET_SELF()); if (rb_method_boundp(klass, ip->defined_method_id, 0)) { expr_type = "super"; } @@ -1254,7 +1254,7 @@ invokesuper } id = lcfp->method_id; - klass = search_super_klass(lcfp->method_klass, recv); + klass = vm_search_super_klass(lcfp->method_klass, recv); if (TOPN(num) == Qfalse) { /* zsuper */ @@ -1262,7 +1262,7 @@ invokesuper } } else { - klass = search_super_klass(ip->klass, recv); + klass = vm_search_super_klass(ip->klass, recv); } flag = VM_CALL_SUPER_BIT | VM_CALL_FCALL_BIT; -- cgit v1.2.3