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

58 lines
1.4 KiB
Diff
Raw Normal View History

2023-09-20 16:43:33 -05:00
- // MIR for `foo` before GVN
+ // MIR for `foo` after GVN
2023-01-29 06:50:27 -06:00
fn foo(_1: u8) -> () {
2023-06-06 08:47:00 -05:00
debug x => _1;
let mut _0: ();
let _2: i32;
let mut _3: i32;
let mut _4: (i32, u8);
let mut _5: u8;
let mut _7: i32;
let mut _8: (u8, i32);
let mut _9: u8;
2023-01-29 06:50:27 -06:00
scope 1 {
2023-06-06 08:47:00 -05:00
debug first => _2;
let _6: i32;
2023-01-29 06:50:27 -06:00
scope 2 {
2023-06-06 08:47:00 -05:00
debug second => _6;
2023-01-29 06:50:27 -06:00
}
}
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_2);
StorageLive(_3);
StorageLive(_4);
StorageLive(_5);
2024-08-18 16:26:34 -05:00
_5 = copy _1;
2023-09-20 16:43:33 -05:00
- _4 = (const 0_i32, move _5);
2024-08-18 16:26:34 -05:00
+ _4 = (const 0_i32, copy _1);
2023-06-06 08:47:00 -05:00
StorageDead(_5);
2024-08-18 16:26:34 -05:00
- _3 = copy (_4.0: i32);
2023-06-06 08:47:00 -05:00
- _2 = Add(move _3, const 1_i32);
+ _3 = const 0_i32;
+ _2 = const 1_i32;
StorageDead(_3);
StorageDead(_4);
StorageLive(_6);
StorageLive(_7);
StorageLive(_8);
StorageLive(_9);
2024-08-18 16:26:34 -05:00
_9 = copy _1;
2023-09-20 16:43:33 -05:00
- _8 = (move _9, const 1_i32);
2024-08-18 16:26:34 -05:00
+ _8 = (copy _1, const 1_i32);
2023-06-06 08:47:00 -05:00
StorageDead(_9);
2024-08-18 16:26:34 -05:00
- _7 = copy (_8.1: i32);
2023-06-06 08:47:00 -05:00
- _6 = Add(move _7, const 2_i32);
+ _7 = const 1_i32;
+ _6 = const 3_i32;
StorageDead(_7);
StorageDead(_8);
_0 = const ();
StorageDead(_6);
StorageDead(_2);
return;
2023-01-29 06:50:27 -06:00
}
}