Skip to content

Commit 5e0e3a2

Browse files
committed
ZJIT: Consistently format match pattern "or" operators
1 parent c441ba1 commit 5e0e3a2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

zjit/src/hir.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4640,12 +4640,12 @@ impl Function {
46404640
worklist.push_back(recv);
46414641
worklist.push_back(val);
46424642
}
4643-
&Insn::GuardBlockParamProxy { state, .. } |
4644-
&Insn::GetGlobal { state, .. } |
4645-
&Insn::GetSpecialSymbol { state, .. } |
4646-
&Insn::GetSpecialNumber { state, .. } |
4647-
&Insn::ObjectAllocClass { state, .. } |
4648-
&Insn::SideExit { state, .. } => worklist.push_back(state),
4643+
&Insn::GuardBlockParamProxy { state, .. }
4644+
| &Insn::GetGlobal { state, .. }
4645+
| &Insn::GetSpecialSymbol { state, .. }
4646+
| &Insn::GetSpecialNumber { state, .. }
4647+
| &Insn::ObjectAllocClass { state, .. }
4648+
| &Insn::SideExit { state, .. } => worklist.push_back(state),
46494649
&Insn::GuardSuperMethodEntry { lep, state, .. } => {
46504650
worklist.push_back(lep);
46514651
worklist.push_back(state);

0 commit comments

Comments
 (0)