From 82d62d4bea9194e400661c3f33b5ddb42684df86 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Mon, 8 Sep 2025 19:17:19 -0400 Subject: Remove unused fields from iseq_inline_constant_cache_entry --- vm_core.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/vm_core.h b/vm_core.h index 9986d3e923..1d02298c6c 100644 --- a/vm_core.h +++ b/vm_core.h @@ -261,10 +261,8 @@ union ic_serial_entry { struct iseq_inline_constant_cache_entry { VALUE flags; - VALUE value; // v0 - VALUE _unused1; // v1 - VALUE _unused2; // v2 - const rb_cref_t *ic_cref; // v3 + VALUE value; + const rb_cref_t *ic_cref; }; STATIC_ASSERT(sizeof_iseq_inline_constant_cache_entry, (offsetof(struct iseq_inline_constant_cache_entry, ic_cref) + -- cgit v1.2.3