rust/tests/mir-opt/dataflow-const-prop/self_assign_add.main.Datafl...

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

24 lines
492 B
Diff
Raw Normal View History

- // MIR for `main` before DataflowConstProp
+ // MIR for `main` after DataflowConstProp
fn main() -> () {
2023-06-06 21:47:00 +08:00
let mut _0: ();
let mut _1: i32;
scope 1 {
2023-06-06 21:47:00 +08:00
debug a => _1;
}
bb0: {
2023-06-06 21:47:00 +08:00
StorageLive(_1);
_1 = const 0_i32;
- _1 = Add(_1, const 1_i32);
- _1 = Add(_1, const 1_i32);
+ _1 = const 1_i32;
+ _1 = const 2_i32;
_0 = const ();
StorageDead(_1);
return;
}
}