We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09482b8 commit ea50aacCopy full SHA for ea50aac
zjit/src/hir.rs
@@ -1093,7 +1093,7 @@ impl Insn {
1093
Insn::DupArrayInclude { .. } => effects::Any,
1094
Insn::ArrayExtend { .. } => effects::Any,
1095
Insn::ArrayPush { .. } => effects::Any,
1096
- Insn::ArrayArefFixnum { .. } => effects::Any,
+ Insn::ArrayAref { .. } => effects::Any,
1097
Insn::ArrayAset { .. } => effects::Any,
1098
Insn::ArrayPop { .. } => effects::Any,
1099
Insn::ArrayLength { .. } => Effect::write(abstract_heaps::Empty),
@@ -1190,6 +1190,8 @@ impl Insn {
1190
Insn::GuardNotFrozen { .. } => effects::Any,
1191
Insn::GuardNotShared { .. } => effects::Any,
1192
Insn::GuardGreaterEq { .. } => effects::Any,
1193
+ Insn::GuardSuperMethodEntry { .. } => effects::Any,
1194
+ Insn::GetBlockHandler { .. } => effects::Any,
1195
Insn::GuardLess { .. } => effects::Any,
1196
Insn::PatchPoint { .. } => effects::Any,
1197
Insn::SideExit { .. } => effects::Any,
0 commit comments