rust/tests/mir-opt/dataflow-const-prop/cast.main.DataflowConstProp.diff

38 lines
840 B
Diff
Raw Normal View History

- // MIR for `main` before DataflowConstProp
+ // MIR for `main` after DataflowConstProp
fn main() -> () {
2023-06-06 08:47:00 -05:00
let mut _0: ();
let _1: i32;
let mut _3: u8;
let mut _4: i32;
scope 1 {
2023-06-06 08:47:00 -05:00
debug a => _1;
let _2: u8;
scope 2 {
2023-06-06 08:47:00 -05:00
debug b => _2;
}
}
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_1);
_1 = const 257_i32;
StorageLive(_2);
StorageLive(_3);
StorageLive(_4);
2024-08-18 16:26:34 -05:00
- _4 = copy _1;
2023-06-06 08:47:00 -05:00
- _3 = move _4 as u8 (IntToInt);
+ _4 = const 257_i32;
+ _3 = const 1_u8;
StorageDead(_4);
- _2 = Add(move _3, const 1_u8);
+ _2 = const 2_u8;
StorageDead(_3);
_0 = const ();
StorageDead(_2);
StorageDead(_1);
return;
}
}