blob: 37c367c82caba69d31e2ad7de2abe514ec725565 (
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
|
- // MIR for `t3` before SimplifyLocals-before-const-prop
+ // MIR for `t3` after SimplifyLocals-before-const-prop
fn t3() -> () {
let mut _0: ();
- let _1: u32;
- let mut _2: &mut u32;
- let mut _3: *mut u32;
scope 1 {
}
bb0: {
- StorageLive(_1);
- StorageLive(_2);
- StorageLive(_3);
- _3 = &/*tls*/ mut X;
- _2 = &mut (*_3);
- _1 = (*_2);
- StorageDead(_3);
- StorageDead(_2);
- StorageDead(_1);
_0 = const ();
return;
}
}
|