2020-04-04 17:15:01 +00:00
|
|
|
- // MIR for `main` before ConstProp
|
|
|
|
+ // MIR for `main` after ConstProp
|
|
|
|
|
|
|
|
fn main() -> () {
|
|
|
|
let mut _0: (); // return place in scope 0 at $DIR/aggregate.rs:4:11: 4:11
|
|
|
|
let _1: i32; // in scope 0 at $DIR/aggregate.rs:5:9: 5:10
|
|
|
|
let mut _2: i32; // in scope 0 at $DIR/aggregate.rs:5:13: 5:24
|
|
|
|
let mut _3: (i32, i32, i32); // in scope 0 at $DIR/aggregate.rs:5:13: 5:22
|
|
|
|
scope 1 {
|
|
|
|
debug x => _1; // in scope 1 at $DIR/aggregate.rs:5:9: 5:10
|
|
|
|
}
|
|
|
|
|
|
|
|
bb0: {
|
2020-04-25 11:01:43 +02:00
|
|
|
StorageLive(_1); // scope 0 at $DIR/aggregate.rs:5:9: 5:10
|
|
|
|
StorageLive(_2); // scope 0 at $DIR/aggregate.rs:5:13: 5:24
|
|
|
|
StorageLive(_3); // scope 0 at $DIR/aggregate.rs:5:13: 5:22
|
2022-04-05 19:02:57 -04:00
|
|
|
Deinit(_3); // scope 0 at $DIR/aggregate.rs:5:13: 5:22
|
2020-05-17 15:39:35 +02:00
|
|
|
(_3.0: i32) = const 0_i32; // scope 0 at $DIR/aggregate.rs:5:13: 5:22
|
|
|
|
(_3.1: i32) = const 1_i32; // scope 0 at $DIR/aggregate.rs:5:13: 5:22
|
|
|
|
(_3.2: i32) = const 2_i32; // scope 0 at $DIR/aggregate.rs:5:13: 5:22
|
2020-04-25 11:01:43 +02:00
|
|
|
- _2 = (_3.1: i32); // scope 0 at $DIR/aggregate.rs:5:13: 5:24
|
2020-06-19 18:57:15 +02:00
|
|
|
- _1 = Add(move _2, const 0_i32); // scope 0 at $DIR/aggregate.rs:5:13: 5:28
|
|
|
|
+ _2 = const 1_i32; // scope 0 at $DIR/aggregate.rs:5:13: 5:24
|
|
|
|
+ _1 = const 1_i32; // scope 0 at $DIR/aggregate.rs:5:13: 5:28
|
2020-04-25 11:01:43 +02:00
|
|
|
StorageDead(_2); // scope 0 at $DIR/aggregate.rs:5:27: 5:28
|
|
|
|
StorageDead(_3); // scope 0 at $DIR/aggregate.rs:5:28: 5:29
|
2021-03-15 21:58:54 -04:00
|
|
|
nop; // scope 0 at $DIR/aggregate.rs:4:11: 6:2
|
2020-04-25 11:01:43 +02:00
|
|
|
StorageDead(_1); // scope 0 at $DIR/aggregate.rs:6:1: 6:2
|
|
|
|
return; // scope 0 at $DIR/aggregate.rs:6:2: 6:2
|
2020-04-04 17:15:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|