We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7a0116 commit 92f8696Copy full SHA for 92f8696
1 file changed
crates/codegen/src/ir.rs
@@ -1287,8 +1287,7 @@ pub(crate) fn label_exception_targets(blocks: &mut [Block]) {
1287
if target != BlockIdx::NULL && !visited[target.idx()] {
1288
visited[target.idx()] = true;
1289
block_stacks[target.idx()] = Some(stack.clone());
1290
- block_depths[target.idx()] =
1291
- handler_stack_depth + 1 + (preserve_lasti as u32);
+ block_depths[target.idx()] = handler_stack_depth + 1 + (preserve_lasti as u32);
1292
worklist.push(target);
1293
}
1294
0 commit comments