summaryrefslogtreecommitdiffstats
path: root/src/test/mir-opt/building/custom/references.immut_ref.built.after.mir
blob: 4d38d45c0f47924eaa45b236916d5ebc21f55957 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// MIR for `immut_ref` after built

fn immut_ref(_1: &i32) -> &i32 {
    let mut _0: &i32;                    // return place in scope 0 at $DIR/references.rs:+0:30: +0:34
    let mut _2: *const i32;              // in scope 0 at $SRC_DIR/core/src/intrinsics/mir.rs:LL:COL

    bb0: {
        _2 = &raw const (*_1);           // scope 0 at $DIR/references.rs:+5:13: +5:29
        Retag([raw] _2);                 // scope 0 at $DIR/references.rs:+6:13: +6:24
        _0 = &(*_2);                     // scope 0 at $DIR/references.rs:+7:13: +7:23
        Retag(_0);                       // scope 0 at $DIR/references.rs:+8:13: +8:23
        return;                          // scope 0 at $DIR/references.rs:+9:13: +9:21
    }
}