rust/tests/mir-opt/const_prop/indirect_mutation.bar.GVN.diff

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

41 lines
905 B
Diff
Raw Permalink Normal View History

2023-09-20 16:43:33 -05:00
- // MIR for `bar` before GVN
+ // MIR for `bar` after GVN
fn bar() -> () {
2023-06-06 08:47:00 -05:00
let mut _0: ();
let mut _1: (i32,);
let _2: ();
let mut _3: *mut i32;
let mut _5: i32;
scope 1 {
2023-06-06 08:47:00 -05:00
debug v => _1;
let _4: bool;
scope 2 {
2023-06-06 08:47:00 -05:00
debug y => _4;
}
}
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_1);
2023-09-20 16:43:33 -05:00
- _1 = (const 1_i32,);
+ _1 = const (1_i32,);
2023-06-06 08:47:00 -05:00
StorageLive(_2);
2023-12-24 07:00:48 -06:00
StorageLive(_3);
2023-06-06 08:47:00 -05:00
_3 = &raw mut (_1.0: i32);
(*_3) = const 5_i32;
2023-12-24 07:00:48 -06:00
StorageDead(_3);
2023-06-06 08:47:00 -05:00
_2 = const ();
StorageDead(_2);
StorageLive(_4);
StorageLive(_5);
_5 = copy (_1.0: i32);
_4 = Eq(move _5, const 5_i32);
StorageDead(_5);
_0 = const ();
StorageDead(_4);
StorageDead(_1);
return;
}
}