rust/tests/mir-opt/const_prop/scalar_literal_propagation.main.ConstProp.panic-unwind.diff

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

33 lines
700 B
Diff
Raw Normal View History

- // MIR for `main` before ConstProp
+ // MIR for `main` after ConstProp
fn main() -> () {
2023-06-06 08:47:00 -05:00
let mut _0: ();
let _1: u32;
let _2: ();
let mut _3: u32;
scope 1 {
2023-06-06 08:47:00 -05:00
debug x => _1;
}
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_1);
_1 = const 1_u32;
StorageLive(_2);
StorageLive(_3);
- _3 = _1;
2023-02-07 13:24:21 -06:00
- _2 = consume(move _3) -> [return: bb1, unwind continue];
2023-06-06 08:47:00 -05:00
+ _3 = const 1_u32;
2023-02-07 13:24:21 -06:00
+ _2 = consume(const 1_u32) -> [return: bb1, unwind continue];
}
bb1: {
2023-06-06 08:47:00 -05:00
StorageDead(_3);
StorageDead(_2);
_0 = const ();
StorageDead(_1);
return;
}
}