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