rust/tests/mir-opt/building/custom/references.mut_ref.built.after.mir

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
645 B
Rust
Raw Normal View History

2022-08-03 06:30:13 -05:00
// MIR for `mut_ref` after built
fn mut_ref(_1: &mut i32) -> &mut i32 {
let mut _0: &mut i32; // return place in scope 0 at $DIR/references.rs:+0:32: +0:40
let mut _2: *mut i32; // in scope 0 at $SRC_DIR/core/src/intrinsics/mir.rs:LL:COL
bb0: {
2022-11-27 23:23:39 -06:00
_2 = &raw mut (*_1); // scope 0 at $DIR/references.rs:+5:13: +5:33
_0 = &mut (*_2); // scope 0 at $DIR/references.rs:+6:13: +6:26
Retag(_0); // scope 0 at $DIR/references.rs:+7:13: +7:23
return; // scope 0 at $DIR/references.rs:+8:13: +8:21
2022-08-03 06:30:13 -05:00
}
}