summaryrefslogtreecommitdiffstats
path: root/vm_core.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-23 19:11:06 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-23 19:11:06 +0000
commit7d820c2ff0b30587562a640ea7dc584ba57bc2c2 (patch)
tree535922a65576e6e0964b2867598292a481102a25 /vm_core.h
parent31c7ec02456b7ec846096886c81c10a0d2abf210 (diff)
downloadruby-7d820c2ff0b30587562a640ea7dc584ba57bc2c2.tar.gz
ruby-7d820c2ff0b30587562a640ea7dc584ba57bc2c2.tar.xz
ruby-7d820c2ff0b30587562a640ea7dc584ba57bc2c2.zip
* vm_core.h: remove unused frame values.
(fix previous commit miss) git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19499 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/vm_core.h b/vm_core.h
index 7b7c51f4c..7d1543342 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -125,12 +125,6 @@ typedef struct rb_compile_option_struct {
#define GetISeqPtr(obj, ptr) \
GetCoreDataFromValue(obj, rb_iseq_t, ptr)
-typedef struct rb_iseq_profile_struct {
- VALUE count;
- VALUE time_self;
- VALUE time_cumu; /* cumulative */
-} rb_iseq_profile_t;
-
struct rb_iseq_struct;
struct rb_iseq_struct {
@@ -221,7 +215,6 @@ struct rb_iseq_struct {
/* misc */
ID defined_method_id; /* for define_method */
- rb_iseq_profile_t profile;
/* used at compile time */
struct iseq_compile_data *compile_data;
@@ -299,8 +292,6 @@ typedef struct {
VALUE proc; /* cfp[9] / block[4] */
ID method_id; /* cfp[10] 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;
typedef struct rb_block_struct {