Skip to content

Commit 92f8696

Browse files
Auto-format: cargo fmt --all
1 parent c7a0116 commit 92f8696

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

crates/codegen/src/ir.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1287,8 +1287,7 @@ pub(crate) fn label_exception_targets(blocks: &mut [Block]) {
12871287
if target != BlockIdx::NULL && !visited[target.idx()] {
12881288
visited[target.idx()] = true;
12891289
block_stacks[target.idx()] = Some(stack.clone());
1290-
block_depths[target.idx()] =
1291-
handler_stack_depth + 1 + (preserve_lasti as u32);
1290+
block_depths[target.idx()] = handler_stack_depth + 1 + (preserve_lasti as u32);
12921291
worklist.push(target);
12931292
}
12941293

0 commit comments

Comments
 (0)