rust/tests/mir-opt/const_prop/aggregate.main.GVN.panic-abort.diff

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

45 lines
1.0 KiB
Diff
Raw Normal View History

2023-09-20 16:43:33 -05:00
- // MIR for `main` before GVN
+ // MIR for `main` after GVN
2020-04-04 12:15:01 -05:00
fn main() -> () {
2023-06-06 08:47:00 -05:00
let mut _0: ();
let _1: u8;
let mut _2: u8;
let mut _3: (i32, u8, i32);
let _4: ();
let mut _5: u8;
2020-04-04 12:15:01 -05:00
scope 1 {
2023-06-06 08:47:00 -05:00
debug x => _1;
2020-04-04 12:15:01 -05:00
}
bb0: {
2023-09-20 16:43:33 -05:00
- StorageLive(_1);
+ nop;
2023-06-06 08:47:00 -05:00
StorageLive(_2);
StorageLive(_3);
_3 = (const 0_i32, const 1_u8, const 2_i32);
- _2 = copy (_3.1: u8);
- _1 = Add(move _2, const 0_u8);
+ _2 = const 1_u8;
+ _1 = const 1_u8;
StorageDead(_2);
StorageDead(_3);
StorageLive(_4);
StorageLive(_5);
- _5 = copy _1;
2023-02-07 13:24:21 -06:00
- _4 = foo(move _5) -> [return: bb1, unwind unreachable];
2023-06-06 08:47:00 -05:00
+ _5 = const 1_u8;
2023-02-07 13:24:21 -06:00
+ _4 = foo(const 1_u8) -> [return: bb1, unwind unreachable];
2023-01-29 06:50:27 -06:00
}
bb1: {
2023-06-06 08:47:00 -05:00
StorageDead(_5);
StorageDead(_4);
_0 = const ();
2023-09-20 16:43:33 -05:00
- StorageDead(_1);
+ nop;
2023-06-06 08:47:00 -05:00
return;
2020-04-04 12:15:01 -05:00
}
}