rust/tests/mir-opt/lower_intrinsics.assume.LowerIntrinsics.panic-unwind.diff

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

22 lines
448 B
Diff
Raw Permalink Normal View History

- // MIR for `assume` before LowerIntrinsics
+ // MIR for `assume` after LowerIntrinsics
fn assume() -> () {
2023-06-06 08:47:00 -05:00
let mut _0: ();
let _1: ();
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_1);
- _1 = std::intrinsics::assume(const true) -> [return: bb1, unwind unreachable];
+ assume(const true);
+ goto -> bb1;
}
bb1: {
2023-06-06 08:47:00 -05:00
StorageDead(_1);
_0 = const ();
return;
}
}