blob: cc96cbef2f519b94e930eb54c3e9243dbc286540 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
- // MIR for `main` before DataflowConstProp
+ // MIR for `main` after DataflowConstProp
fn main() -> () {
let mut _0: ();
let mut _1: (u8, u8);
let _2: ();
let mut _4: *mut u8;
let mut _5: *mut u8;
scope 1 {
debug x => _1;
let _6: u8;
scope 2 {
let _3: *mut u8;
scope 3 {
debug p => _3;
}
}
scope 4 {
debug x1 => _6;
}
}
bb0: {
StorageLive(_1);
_1 = (const 0_u8, const 0_u8);
StorageLive(_2);
StorageLive(_3);
_3 = &raw mut (_1.0: u8);
StorageLive(_4);
StorageLive(_5);
_5 = _3;
_4 = ptr::mut_ptr::<impl *mut u8>::add(move _5, const 1_usize) -> [return: bb1, unwind unreachable];
}
bb1: {
StorageDead(_5);
(*_4) = const 1_u8;
StorageDead(_4);
_2 = const ();
StorageDead(_3);
StorageDead(_2);
StorageLive(_6);
_6 = (_1.1: u8);
_0 = const ();
StorageDead(_6);
StorageDead(_1);
return;
}
}
|