rust/tests/mir-opt/intrinsic_asserts.removable...

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

37 lines
737 B
Diff
Raw Normal View History

2023-05-07 11:20:58 +08:00
- // MIR for `removable` before InstSimplify
+ // MIR for `removable` after InstSimplify
fn removable() -> () {
2023-06-06 21:47:00 +08:00
let mut _0: ();
let _1: ();
let _2: ();
let _3: ();
bb0: {
2023-06-06 21:47:00 +08:00
nop;
- _1 = assert_inhabited::<()>() -> [return: bb1, unwind unreachable];
+ goto -> bb1;
}
bb1: {
2023-06-06 21:47:00 +08:00
nop;
nop;
- _2 = assert_zero_valid::<u8>() -> [return: bb2, unwind unreachable];
+ goto -> bb2;
}
bb2: {
2023-06-06 21:47:00 +08:00
nop;
nop;
- _3 = assert_mem_uninitialized_valid::<u8>() -> [return: bb3, unwind unreachable];
+ goto -> bb3;
}
bb3: {
2023-06-06 21:47:00 +08:00
nop;
nop;
return;
}
}