rust/tests/mir-opt/const_prop/cast.main.GVN.diff

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

29 lines
588 B
Diff
Raw Normal View History

2023-09-20 16:43:33 -05:00
- // MIR for `main` before GVN
+ // MIR for `main` after GVN
2020-03-11 05:49:00 -05:00
fn main() -> () {
2023-06-06 08:47:00 -05:00
let mut _0: ();
let _1: u32;
2020-03-11 05:49:00 -05:00
scope 1 {
2023-06-06 08:47:00 -05:00
debug x => _1;
let _2: u8;
2020-03-11 05:49:00 -05:00
scope 2 {
2023-06-06 08:47:00 -05:00
debug y => _2;
2020-03-11 05:49:00 -05:00
}
}
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_1);
- _1 = const 42_u8 as u32 (IntToInt);
+ _1 = const 42_u32;
StorageLive(_2);
- _2 = const 42_u32 as u8 (IntToInt);
+ _2 = const 42_u8;
_0 = const ();
StorageDead(_2);
StorageDead(_1);
return;
2020-03-11 05:49:00 -05:00
}
}