aboutsummaryrefslogtreecommitdiffstats
path: root/vm_core.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-29 22:43:45 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-29 22:43:45 +0000
commitf363bbdf1042562e40aaccbd1bdd7b783c096ff0 (patch)
tree0de55747f141abd966094612066382ed73e78302 /vm_core.h
parent15d735de1506e063b47ba1c4124a6b9cca316eda (diff)
downloadruby-f363bbdf1042562e40aaccbd1bdd7b783c096ff0.tar.gz
* insns.def (getinlinecache/setinlinecache): compare ic->ic_cref and
current cref only when cached CREF list includes singleton class. Singleton classes have own namespaces, so that we need to check cref as a key (#10943). However, if current CREF list does not include singleton class, no need to check CREF beacuse it should be same name space. * vm_insnhelper.c (vm_get_const_key_cref): add a function returns CREF only when it includes singleton class. * vm_core.h: constify iseq_inline_cache_entry::ic_cref. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52371 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_core.h b/vm_core.h
index 0684e85456..aacdd3b897 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -180,7 +180,7 @@ typedef struct rb_compile_option_struct rb_compile_option_t;
struct iseq_inline_cache_entry {
rb_serial_t ic_serial;
- rb_cref_t *ic_cref;
+ const rb_cref_t *ic_cref;
union {
size_t index;
VALUE value;