rust/tests/mir-opt/lower_intrinsics.assume.Low...

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

24 lines
472 B
Diff
Raw Normal View History

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