Skip to content

Commit 8794426

Browse files
Auto-format: cargo fmt --all
1 parent 989c2a9 commit 8794426

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

crates/codegen/src/ir.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1219,7 +1219,10 @@ pub(crate) fn label_exception_targets(blocks: &mut [Block]) {
12191219
preserve_lasti,
12201220
});
12211221
} else if is_pop {
1222-
debug_assert!(!stack.is_empty(), "POP_BLOCK with empty except stack at block {bi} instruction {i}");
1222+
debug_assert!(
1223+
!stack.is_empty(),
1224+
"POP_BLOCK with empty except stack at block {bi} instruction {i}"
1225+
);
12231226
stack.pop();
12241227
// POP_BLOCK → NOP
12251228
blocks[bi].instructions[i].instr = Instruction::Nop.into();

0 commit comments

Comments
 (0)