mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
24 lines
492 B
Diff
24 lines
492 B
Diff
- // MIR for `main` before DataflowConstProp
|
|
+ // MIR for `main` after DataflowConstProp
|
|
|
|
fn main() -> () {
|
|
let mut _0: ();
|
|
let mut _1: i32;
|
|
scope 1 {
|
|
debug a => _1;
|
|
}
|
|
|
|
bb0: {
|
|
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;
|
|
}
|
|
}
|
|
|