blob: 0ca446c89f2e096f7733e8930c363c9159c5d24f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
- // MIR for `main` before DataflowConstProp
+ // MIR for `main` after DataflowConstProp
fn main() -> () {
let mut _0: ();
let _1: i32;
let mut _3: u8;
let mut _4: i32;
scope 1 {
debug a => _1;
let _2: u8;
scope 2 {
debug b => _2;
}
}
bb0: {
StorageLive(_1);
_1 = const 257_i32;
StorageLive(_2);
StorageLive(_3);
StorageLive(_4);
- _4 = _1;
- _3 = move _4 as u8 (IntToInt);
+ _4 = const 257_i32;
+ _3 = const 1_u8;
StorageDead(_4);
- _2 = Add(move _3, const 1_u8);
+ _2 = const 2_u8;
StorageDead(_3);
_0 = const ();
StorageDead(_2);
StorageDead(_1);
return;
}
}
|