mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
17 lines
277 B
Rust
17 lines
277 B
Rust
// MIR for `manual_replace` after PreCodegen
|
|
|
|
fn manual_replace(_1: &mut u32, _2: u32) -> u32 {
|
|
debug r => _1;
|
|
debug v => _2;
|
|
let mut _0: u32;
|
|
scope 1 {
|
|
debug temp => _0;
|
|
}
|
|
|
|
bb0: {
|
|
_0 = (*_1);
|
|
(*_1) = _2;
|
|
return;
|
|
}
|
|
}
|