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

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

37 lines
855 B
Diff
Raw Normal View History

- // MIR for `removable` before InstSimplify-after-simplifycfg
+ // MIR for `removable` after InstSimplify-after-simplifycfg
fn removable() -> () {
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::<()>() -> [return: bb1, unwind unreachable];
+ goto -> bb1;
}
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];
+ goto -> bb2;
}
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];
+ goto -> bb3;
}
bb3: {
2023-10-16 14:30:09 -05:00
StorageDead(_3);
_0 = const ();
2023-06-06 08:47:00 -05:00
return;
}
}