-
-
Notifications
You must be signed in to change notification settings - Fork 14.9k
Expand file tree
/
Copy pathborrowed_variable.mutptr.GVN.diff
More file actions
50 lines (45 loc) · 1.14 KB
/
borrowed_variable.mutptr.GVN.diff
File metadata and controls
50 lines (45 loc) · 1.14 KB
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
- // MIR for `mutptr` before GVN
+ // MIR for `mutptr` after GVN
fn mutptr() -> () {
let mut _0: ();
let mut _1: i32;
let _2: ();
let mut _3: i32;
let _5: ();
let mut _6: i32;
scope 1 {
debug x => _1;
let _4: *mut i32;
scope 2 {
debug r => _4;
}
}
bb0: {
StorageLive(_1);
_1 = const 42_i32;
StorageLive(_2);
StorageLive(_3);
- _3 = copy _1;
- _2 = opaque::<i32>(move _3) -> [return: bb1, unwind unreachable];
+ _3 = const 42_i32;
+ _2 = opaque::<i32>(const 42_i32) -> [return: bb1, unwind unreachable];
}
bb1: {
StorageDead(_3);
StorageDead(_2);
StorageLive(_4);
_4 = &raw mut _1;
StorageLive(_5);
StorageLive(_6);
_6 = copy _1;
_5 = opaque::<i32>(move _6) -> [return: bb2, unwind unreachable];
}
bb2: {
StorageDead(_6);
StorageDead(_5);
_0 = const ();
StorageDead(_4);
StorageDead(_1);
return;
}
}