2023-04-30 00:33:57 -05:00
|
|
|
// 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;
|
2023-04-30 00:33:57 -05:00
|
|
|
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;
|
2023-04-30 00:33:57 -05:00
|
|
|
scope 8 {
|
2023-06-06 08:47:00 -05:00
|
|
|
scope 9 (inlined std::ptr::write::runtime::<u32>) {
|
|
|
|
debug dst => _4;
|
2023-04-30 00:33:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-06-06 08:47:00 -05:00
|
|
|
scope 4 (inlined std::ptr::read::<u32>) {
|
|
|
|
debug src => _3;
|
2023-04-30 00:33:57 -05:00
|
|
|
scope 5 {
|
2023-06-06 08:47:00 -05:00
|
|
|
scope 6 (inlined std::ptr::read::runtime::<u32>) {
|
|
|
|
debug src => _3;
|
2023-04-30 00:33:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2023-04-30 00:33:57 -05:00
|
|
|
}
|
|
|
|
}
|