summaryrefslogtreecommitdiffstats
path: root/vm_core.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-11-22 01:17:52 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-11-22 01:17:52 +0000
commitf7fbd5b8ad2645e87fcd8abb31c2523072d593b6 (patch)
tree3eafb81fd80be68d34289b6d4c3ae97b2985b080 /vm_core.h
parent440ac81c905c21099b0366ff28eec5c34eab8283 (diff)
downloadruby-f7fbd5b8ad2645e87fcd8abb31c2523072d593b6.tar.gz
ruby-f7fbd5b8ad2645e87fcd8abb31c2523072d593b6.tar.xz
ruby-f7fbd5b8ad2645e87fcd8abb31c2523072d593b6.zip
* insnhelper.ci (vm_search_normal_superclass): rename function.
* insnhelper.ci (vm_search_superclass): ditto. * proc.c (struct METHOD): rename rklass -> rclass. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13995 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/vm_core.h b/vm_core.h
index 4cf4e365a..c2c1420df 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -321,7 +321,7 @@ typedef struct {
rb_iseq_t *block_iseq; /* cfp[8] / block[3] */
VALUE proc; /* cfp[9] / block[4] */
ID method_id; /* cfp[10] saved in special case */
- VALUE method_klass; /* cfp[11] saved in special case */
+ VALUE method_class; /* cfp[11] saved in special case */
VALUE prof_time_self; /* cfp[12] */
VALUE prof_time_chld; /* cfp[13] */
} rb_control_frame_t;
@@ -522,7 +522,7 @@ typedef struct {
/* inline (method|const) cache */
#define NEW_INLINE_CACHE_ENTRY() NEW_WHILE(Qundef, 0, 0)
-#define ic_klass u1.value
+#define ic_class u1.value
#define ic_method u2.node
#define ic_value u2.value
#define ic_vmstat u3.cnt
@@ -593,7 +593,7 @@ void rb_vm_bugreport(void);
VALUE rb_iseq_eval(VALUE iseqval);
void rb_enable_interrupt(void);
void rb_disable_interrupt(void);
-int rb_thread_method_id_and_klass(rb_thread_t *th, ID *idp, VALUE *klassp);
+int rb_thread_method_id_and_class(rb_thread_t *th, ID *idp, VALUE *klassp);
VALUE vm_eval_body(rb_thread_t *th);
VALUE vm_invoke_proc(rb_thread_t *th, rb_proc_t *proc, VALUE self, int argc, VALUE *argv);