rust/tests/mir-opt/instsimplify/intrinsic_asserts.panics.InstSimplify-after-simplifycfg.diff

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
991 B
Diff
Raw Permalink Normal View History

- // MIR for `panics` before InstSimplify-after-simplifycfg
+ // MIR for `panics` after InstSimplify-after-simplifycfg
fn panics() -> () {
2023-06-06 08:47:00 -05:00
let mut _0: ();
let _1: ();
let _2: ();
let _3: ();
bb0: {
2023-10-16 14:30:09 -05:00
StorageLive(_1);
2023-06-06 08:47:00 -05:00
- _1 = assert_inhabited::<Never>() -> [return: bb1, unwind unreachable];
+ _1 = assert_inhabited::<Never>() -> unwind unreachable;
}
bb1: {
2023-10-16 14:30:09 -05:00
StorageDead(_1);
StorageLive(_2);
2023-06-06 08:47:00 -05:00
- _2 = assert_zero_valid::<&u8>() -> [return: bb2, unwind unreachable];
+ _2 = assert_zero_valid::<&u8>() -> unwind unreachable;
}
bb2: {
2023-10-16 14:30:09 -05:00
StorageDead(_2);
StorageLive(_3);
2023-06-06 08:47:00 -05:00
- _3 = assert_mem_uninitialized_valid::<&u8>() -> [return: bb3, unwind unreachable];
+ _3 = assert_mem_uninitialized_valid::<&u8>() -> unwind unreachable;
}
bb3: {
2023-10-16 14:30:09 -05:00
StorageDead(_3);
_0 = const ();
2023-06-06 08:47:00 -05:00
return;
}
}