mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
28 lines
582 B
Diff
28 lines
582 B
Diff
- // MIR for `dont_opt` before RemoveUnneededDrops
|
|
+ // MIR for `dont_opt` after RemoveUnneededDrops
|
|
|
|
fn dont_opt(_1: Vec<bool>) -> () {
|
|
debug x => _1;
|
|
let mut _0: ();
|
|
let _2: ();
|
|
let mut _3: std::vec::Vec<bool>;
|
|
scope 1 (inlined std::mem::drop::<Vec<bool>>) {
|
|
debug _x => _3;
|
|
}
|
|
|
|
bb0: {
|
|
nop;
|
|
StorageLive(_3);
|
|
_3 = move _1;
|
|
drop(_3) -> [return: bb1, unwind unreachable];
|
|
}
|
|
|
|
bb1: {
|
|
StorageDead(_3);
|
|
nop;
|
|
nop;
|
|
return;
|
|
}
|
|
}
|
|
|