rust/tests/mir-opt/remove_unneeded_drops.opt.R...

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

28 lines
534 B
Diff
Raw Normal View History

- // MIR for `opt` before RemoveUnneededDrops
+ // MIR for `opt` after RemoveUnneededDrops
fn opt(_1: bool) -> () {
2023-06-06 21:47:00 +08:00
debug x => _1;
let mut _0: ();
let _2: ();
let mut _3: bool;
scope 1 (inlined std::mem::drop::<bool>) {
debug _x => _3;
}
bb0: {
2023-06-06 21:47:00 +08:00
- nop;
StorageLive(_3);
_3 = _1;
2023-06-24 00:53:09 +08:00
- drop(_3) -> [return: bb1, unwind continue];
2020-09-19 21:21:39 +08:00
- }
-
- bb1: {
2023-06-06 21:47:00 +08:00
StorageDead(_3);
- nop;
- nop;
return;
}
}