summaryrefslogtreecommitdiff
path: root/yjit.c
diff options
context:
space:
mode:
authorPeter Zhu <[email protected]>2025-02-12 13:22:18 -0500
committerPeter Zhu <[email protected]>2025-02-12 14:03:07 -0500
commit16f41eca53ec43763c63a830e50ca72324dc9c79 (patch)
treed80baa763e927d2ef4028b09e710c217bf7786b8 /yjit.c
parentf32d5071b7b01f258eb45cf533496d82d5c0f6a1 (diff)
Remove dead iv_index_tbl field in RObject
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/12739
Diffstat (limited to 'yjit.c')
-rw-r--r--yjit.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/yjit.c b/yjit.c
index 39774252b3..741767eeb4 100644
--- a/yjit.c
+++ b/yjit.c
@@ -42,7 +42,6 @@
// Field offsets for the RObject struct
enum robject_offsets {
ROBJECT_OFFSET_AS_HEAP_IVPTR = offsetof(struct RObject, as.heap.ivptr),
- ROBJECT_OFFSET_AS_HEAP_IV_INDEX_TBL = offsetof(struct RObject, as.heap.iv_index_tbl),
ROBJECT_OFFSET_AS_ARY = offsetof(struct RObject, as.ary),
};