diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2024-04-11 09:59:43 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2024-04-11 09:59:43 +0000 |
| commit | 8a5eecc89736a5b54daa3c8dd7d88fc228b710fd (patch) | |
| tree | 6d6eb76250e090dca108fb24a42ccab4dee28f3e /src | |
| parent | c183c6194e425fcb2af5d957b84d81c93a7c090c (diff) | |
| download | rust-8a5eecc89736a5b54daa3c8dd7d88fc228b710fd.tar.gz rust-8a5eecc89736a5b54daa3c8dd7d88fc228b710fd.zip | |
Rustup to rustc 1.79.0-nightly (aa067fb98 2024-04-10)
Diffstat (limited to 'src')
| -rw-r--r-- | src/base.rs | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/base.rs b/src/base.rs index 771e5b21958..f07421431da 100644 --- a/src/base.rs +++ b/src/base.rs @@ -267,10 +267,19 @@ fn codegen_fn_body(fx: &mut FunctionCx<'_, '_, '_>, start_block: Block) { .generic_activity("codegen prelude") .run(|| crate::abi::codegen_fn_prelude(fx, start_block)); - for (bb, bb_data) in traversal::mono_reachable(fx.mir, fx.tcx, fx.instance) { + let reachable_blocks = traversal::mono_reachable_as_bitset(fx.mir, fx.tcx, fx.instance); + + for (bb, bb_data) in fx.mir.basic_blocks.iter_enumerated() { let block = fx.get_block(bb); fx.bcx.switch_to_block(block); + if !reachable_blocks.contains(bb) { + // We want to skip this block, because it's not reachable. But we still create + // the block so terminators in other blocks can reference it. + fx.bcx.ins().trap(TrapCode::UnreachableCodeReached); + continue; + } + if bb_data.is_cleanup { // Unwinding after panicking is not supported continue; |
