Skip to content

Commit ea50aac

Browse files
committed
Rename ArrayArefFixnum in effects_of, add missing HIR instructions to effects_of
1 parent 09482b8 commit ea50aac

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

zjit/src/hir.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1093,7 +1093,7 @@ impl Insn {
10931093
Insn::DupArrayInclude { .. } => effects::Any,
10941094
Insn::ArrayExtend { .. } => effects::Any,
10951095
Insn::ArrayPush { .. } => effects::Any,
1096-
Insn::ArrayArefFixnum { .. } => effects::Any,
1096+
Insn::ArrayAref { .. } => effects::Any,
10971097
Insn::ArrayAset { .. } => effects::Any,
10981098
Insn::ArrayPop { .. } => effects::Any,
10991099
Insn::ArrayLength { .. } => Effect::write(abstract_heaps::Empty),
@@ -1190,6 +1190,8 @@ impl Insn {
11901190
Insn::GuardNotFrozen { .. } => effects::Any,
11911191
Insn::GuardNotShared { .. } => effects::Any,
11921192
Insn::GuardGreaterEq { .. } => effects::Any,
1193+
Insn::GuardSuperMethodEntry { .. } => effects::Any,
1194+
Insn::GetBlockHandler { .. } => effects::Any,
11931195
Insn::GuardLess { .. } => effects::Any,
11941196
Insn::PatchPoint { .. } => effects::Any,
11951197
Insn::SideExit { .. } => effects::Any,

0 commit comments

Comments
 (0)