rust/tests/mir-opt/instsimplify/casts.redundant.InstSimplify.diff

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

30 lines
709 B
Diff
Raw Normal View History

2023-05-06 23:20:58 -04:00
- // MIR for `redundant` before InstSimplify
+ // MIR for `redundant` after InstSimplify
2023-02-19 15:50:00 -05:00
fn redundant(_1: *const &u8) -> *const &u8 {
2023-06-06 09:47:00 -04:00
debug x => _1;
let mut _0: *const &u8;
let mut _2: *const &u8;
let mut _3: *const &u8;
scope 1 (inlined generic_cast::<&u8, &u8>) {
2023-10-16 19:58:20 +00:00
debug x => _3;
let mut _4: *const &u8;
2023-02-19 15:50:00 -05:00
}
bb0: {
2023-06-06 09:47:00 -04:00
StorageLive(_2);
StorageLive(_3);
_3 = _1;
2023-10-16 19:58:20 +00:00
StorageLive(_4);
_4 = _3;
- _2 = move _4 as *const &u8 (PtrToPtr);
+ _2 = move _4;
StorageDead(_4);
2023-06-06 09:47:00 -04:00
StorageDead(_3);
_0 = _2;
StorageDead(_2);
return;
2023-02-19 15:50:00 -05:00
}
}