Skip to content

Commit 82d62d4

Browse files
committed
Remove unused fields from iseq_inline_constant_cache_entry
1 parent 9e3a162 commit 82d62d4

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

vm_core.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -261,10 +261,8 @@ union ic_serial_entry {
261261
struct iseq_inline_constant_cache_entry {
262262
VALUE flags;
263263

264-
VALUE value; // v0
265-
VALUE _unused1; // v1
266-
VALUE _unused2; // v2
267-
const rb_cref_t *ic_cref; // v3
264+
VALUE value;
265+
const rb_cref_t *ic_cref;
268266
};
269267
STATIC_ASSERT(sizeof_iseq_inline_constant_cache_entry,
270268
(offsetof(struct iseq_inline_constant_cache_entry, ic_cref) +

0 commit comments

Comments
 (0)