We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 989c2a9 commit 8794426Copy full SHA for 8794426
crates/codegen/src/ir.rs
@@ -1219,7 +1219,10 @@ pub(crate) fn label_exception_targets(blocks: &mut [Block]) {
1219
preserve_lasti,
1220
});
1221
} else if is_pop {
1222
- debug_assert!(!stack.is_empty(), "POP_BLOCK with empty except stack at block {bi} instruction {i}");
+ debug_assert!(
1223
+ !stack.is_empty(),
1224
+ "POP_BLOCK with empty except stack at block {bi} instruction {i}"
1225
+ );
1226
stack.pop();
1227
// POP_BLOCK → NOP
1228
blocks[bi].instructions[i].instr = Instruction::Nop.into();
0 commit comments