summaryrefslogtreecommitdiff
path: root/mjit_c.rb
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2022-11-28 23:32:24 -0800
committerTakashi Kokubun <takashikkbn@gmail.com>2022-11-28 23:32:27 -0800
commit2329cbeb5bf7c7e8720cd4512285e6784c41367e (patch)
tree87b64cb30e8d75b66c5ef63d697cbf70d9dc13dc /mjit_c.rb
parent322e546f60e3a66b9af6aa1b8c7006369932ce27 (diff)
MJIT: Merge exivar guards as well
obviating status->merge_ivar_guards_p as refactoring
Diffstat (limited to 'mjit_c.rb')
-rw-r--r--mjit_c.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/mjit_c.rb b/mjit_c.rb
index 19722fb4d7..eb82c9fd40 100644
--- a/mjit_c.rb
+++ b/mjit_c.rb
@@ -240,7 +240,6 @@ module RubyVM::MJIT
compiled_iseq: [CType::Pointer.new { self.rb_iseq_constant_body }, Primitive.cexpr!("OFFSETOF((*((struct compile_status *)NULL)), compiled_iseq)")],
compiled_id: [CType::Immediate.parse("int"), Primitive.cexpr!("OFFSETOF((*((struct compile_status *)NULL)), compiled_id)")],
compile_info: [CType::Pointer.new { self.rb_mjit_compile_info }, Primitive.cexpr!("OFFSETOF((*((struct compile_status *)NULL)), compile_info)")],
- merge_ivar_guards_p: [self._Bool, Primitive.cexpr!("OFFSETOF((*((struct compile_status *)NULL)), merge_ivar_guards_p)")],
inlined_iseqs: [CType::Pointer.new { CType::Pointer.new { self.rb_iseq_constant_body } }, Primitive.cexpr!("OFFSETOF((*((struct compile_status *)NULL)), inlined_iseqs)")],
inline_context: [self.inlined_call_context, Primitive.cexpr!("OFFSETOF((*((struct compile_status *)NULL)), inline_context)")],
)