File: address_of.borrow_and_cast.SimplifyCfg-initial.after.mir

package info (click to toggle)
rustc 1.85.0%2Bdfsg3-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, sid, trixie
  • size: 893,396 kB
  • sloc: xml: 158,127; python: 35,830; javascript: 19,497; cpp: 19,002; sh: 17,245; ansic: 13,127; asm: 4,376; makefile: 1,051; perl: 29; lisp: 29; ruby: 19; sql: 11
file content (47 lines) | stat: -rw-r--r-- 1,064 bytes parent folder | download | duplicates (5)
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
// MIR for `borrow_and_cast` after SimplifyCfg-initial

fn borrow_and_cast(_1: i32) -> () {
    debug x => _1;
    let mut _0: ();
    let _2: *const i32;
    let _3: &i32;
    let _5: &mut i32;
    let mut _7: &mut i32;
    scope 1 {
        debug p => _2;
        let _4: *const i32;
        scope 2 {
            debug q => _4;
            let _6: *mut i32;
            scope 3 {
                debug r => _6;
            }
        }
    }

    bb0: {
        StorageLive(_2);
        StorageLive(_3);
        _3 = &_1;
        _2 = &raw const (*_3);
        FakeRead(ForLet(None), _2);
        StorageDead(_3);
        StorageLive(_4);
        StorageLive(_5);
        _5 = &mut _1;
        _4 = &raw const (*_5);
        FakeRead(ForLet(None), _4);
        StorageDead(_5);
        StorageLive(_6);
        StorageLive(_7);
        _7 = &mut _1;
        _6 = &raw mut (*_7);
        FakeRead(ForLet(None), _6);
        StorageDead(_7);
        _0 = const ();
        StorageDead(_6);
        StorageDead(_4);
        StorageDead(_2);
        return;
    }
}