diff options
author | Aaron Patterson <[email protected]> | 2021-05-11 13:30:40 -0700 |
---|---|---|
committer | Aaron Patterson <[email protected]> | 2021-05-11 13:31:00 -0700 |
commit | 07f055bb132f21fd71af2720382ad8d2e8f69e47 (patch) | |
tree | 9fc22fdb5d081e61311092ca261214f31e7e278e /vm_core.h | |
parent | 08de37f9fa3469365e6b5c964689ae2bae0eb9f3 (diff) |
Revert "Filling cache values on cvar write"
This reverts commit 08de37f9fa3469365e6b5c964689ae2bae0eb9f3.
This reverts commit e8ae922b62adb00a80d3d4c49f7d7b0e6026eaba.
Diffstat (limited to 'vm_core.h')
-rw-r--r-- | vm_core.h | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -244,10 +244,6 @@ struct iseq_inline_iv_cache_entry { struct rb_iv_index_tbl_entry *entry; }; -struct iseq_inline_cvar_cache_entry { - struct rb_cvar_class_tbl_entry *entry; -}; - union iseq_inline_storage_entry { struct { struct rb_thread_struct *running_thread; @@ -1154,7 +1150,6 @@ enum vm_svar_index { /* inline cache */ typedef struct iseq_inline_constant_cache *IC; typedef struct iseq_inline_iv_cache_entry *IVC; -typedef struct iseq_inline_cvar_cache_entry *ICVARC; typedef union iseq_inline_storage_entry *ISE; typedef const struct rb_callinfo *CALL_INFO; typedef const struct rb_callcache *CALL_CACHE; |