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

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