rust/tests/mir-opt/const_prop/mutable_variable_no_prop.main.ConstProp.diff

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

46 lines
996 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 mut _1: u32;
let _2: ();
let mut _3: u32;
let mut _4: *mut u32;
scope 1 {
2023-06-06 08:47:00 -05:00
debug x => _1;
let _5: u32;
scope 2 {
}
scope 3 {
2023-06-06 08:47:00 -05:00
debug y => _5;
}
}
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_1);
_1 = const 42_u32;
StorageLive(_2);
StorageLive(_3);
StorageLive(_4);
2023-10-15 12:00:11 -05:00
_4 = const {ALLOC0: *mut u32};
2023-06-06 08:47:00 -05:00
_3 = (*_4);
_1 = move _3;
StorageDead(_3);
StorageDead(_4);
_2 = const ();
StorageDead(_2);
StorageLive(_5);
_5 = _1;
_0 = const ();
StorageDead(_5);
StorageDead(_1);
return;
}
}
2023-10-15 12:00:11 -05:00
ALLOC0 (static: STATIC, size: 4, align: 4) {
42 42 42 42 │ BBBB
2022-02-09 07:21:49 -06:00
}