rust/tests/mir-opt/pre-codegen/mem_replace.mem_replace.PreCodegen.after.mir

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

48 lines
1.3 KiB
Rust
Raw Normal View History

// MIR for `mem_replace` after PreCodegen
fn mem_replace(_1: &mut u32, _2: u32) -> u32 {
2023-06-06 08:47:00 -05:00
debug r => _1;
debug v => _2;
let mut _0: u32;
scope 1 (inlined std::mem::replace::<u32>) {
debug dest => _1;
debug src => _2;
let mut _3: *const u32;
let mut _4: *mut u32;
scope 2 {
scope 3 {
2023-06-06 08:47:00 -05:00
debug result => _0;
scope 7 (inlined std::ptr::write::<u32>) {
debug dst => _4;
debug src => _2;
scope 8 {
2023-06-06 08:47:00 -05:00
scope 9 (inlined std::ptr::write::runtime::<u32>) {
debug dst => _4;
}
}
}
}
2023-06-06 08:47:00 -05:00
scope 4 (inlined std::ptr::read::<u32>) {
debug src => _3;
scope 5 {
2023-06-06 08:47:00 -05:00
scope 6 (inlined std::ptr::read::runtime::<u32>) {
debug src => _3;
}
}
}
}
}
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_3);
_3 = &raw const (*_1);
_0 = (*_3);
StorageDead(_3);
StorageLive(_4);
_4 = &raw mut (*_1);
(*_4) = _2;
StorageDead(_4);
return;
}
}