blob: 4eb29b174a97b7f8fcc0d9c4963e7b6f40046ec4 (
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
|
- // MIR for `main` before GVN
+ // MIR for `main` after GVN
fn main() -> () {
let mut _0: ();
let _1: ();
let mut _2: ((), u8, u8);
let mut _3: ();
bb0: {
StorageLive(_1);
StorageLive(_2);
StorageLive(_3);
- _3 = ();
- _2 = (move _3, const 0_u8, const 0_u8);
+ _3 = const ();
+ _2 = const ((), 0_u8, 0_u8);
StorageDead(_3);
- _1 = encode(move _2) -> [return: bb1, unwind continue];
+ _1 = encode(const ((), 0_u8, 0_u8)) -> [return: bb1, unwind continue];
}
bb1: {
StorageDead(_2);
StorageDead(_1);
_0 = const ();
return;
}
+ }
+
+ ALLOC0 (size: 2, align: 1) {
+ 00 00 │ ..
}
|