summaryrefslogtreecommitdiff
path: root/mjit_c.rb
diff options
context:
space:
mode:
authorJohn Hawthorn <john@hawthorn.email>2022-10-21 14:31:33 -0700
committerJohn Hawthorn <john@hawthorn.email>2022-10-24 10:54:01 -0700
commitb652dbf63b963f92abddf15ed4f2fed0787e1969 (patch)
treea996b29a004951cb9e2cb1dd32065ec85470b7c2 /mjit_c.rb
parentabeef41c9573b458dec1b960d4251a38aeaa8e03 (diff)
Remove iv_index_tbl_entry
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/6610
Diffstat (limited to 'mjit_c.rb')
-rw-r--r--mjit_c.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/mjit_c.rb b/mjit_c.rb
index 30a9f17a2c..7684755b6b 100644
--- a/mjit_c.rb
+++ b/mjit_c.rb
@@ -527,15 +527,6 @@ module RubyVM::MJIT
@rb_iseq_t ||= self.rb_iseq_struct
end
- def C.rb_iv_index_tbl_entry
- @rb_iv_index_tbl_entry ||= CType::Struct.new(
- "rb_iv_index_tbl_entry", Primitive.cexpr!("SIZEOF(struct rb_iv_index_tbl_entry)"),
- index: [CType::Immediate.parse("uint32_t"), Primitive.cexpr!("OFFSETOF((*((struct rb_iv_index_tbl_entry *)NULL)), index)")],
- source_shape_id: [self.shape_id_t, Primitive.cexpr!("OFFSETOF((*((struct rb_iv_index_tbl_entry *)NULL)), source_shape_id)")],
- dest_shape_id: [self.shape_id_t, Primitive.cexpr!("OFFSETOF((*((struct rb_iv_index_tbl_entry *)NULL)), dest_shape_id)")],
- )
- end
-
def C.rb_method_definition_struct
@rb_method_definition_struct ||= CType::Struct.new(
"rb_method_definition_struct", Primitive.cexpr!("SIZEOF(struct rb_method_definition_struct)"),