rust/tests/mir-opt/simplify_locals.expose_addr.SimplifyLocals-before-const-prop.diff

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

22 lines
532 B
Diff
Raw Normal View History

2022-12-04 13:20:55 -06:00
- // MIR for `expose_addr` before SimplifyLocals-before-const-prop
+ // MIR for `expose_addr` after SimplifyLocals-before-const-prop
fn expose_addr(_1: *const usize) -> () {
2023-06-06 08:47:00 -05:00
debug p => _1;
let mut _0: ();
let _2: usize;
let mut _3: *const usize;
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_2);
StorageLive(_3);
_3 = _1;
_2 = move _3 as usize (PointerExposeAddress);
StorageDead(_3);
StorageDead(_2);
_0 = const ();
return;
}
}