mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
22 lines
532 B
Diff
22 lines
532 B
Diff
- // MIR for `expose_addr` before SimplifyLocals-before-const-prop
|
|
+ // MIR for `expose_addr` after SimplifyLocals-before-const-prop
|
|
|
|
fn expose_addr(_1: *const usize) -> () {
|
|
debug p => _1;
|
|
let mut _0: ();
|
|
let _2: usize;
|
|
let mut _3: *const usize;
|
|
|
|
bb0: {
|
|
StorageLive(_2);
|
|
StorageLive(_3);
|
|
_3 = _1;
|
|
_2 = move _3 as usize (PointerExposeAddress);
|
|
StorageDead(_3);
|
|
StorageDead(_2);
|
|
_0 = const ();
|
|
return;
|
|
}
|
|
}
|
|
|