2024-07-27 14:36:17 +08:00
|
|
|
- // MIR for `redundant` before InstSimplify-after-simplifycfg
|
|
|
|
+ // MIR for `redundant` after InstSimplify-after-simplifycfg
|
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;
|
2023-07-02 17:50:24 +02:00
|
|
|
let mut _4: *const &u8;
|
2023-06-06 09:47:00 -04:00
|
|
|
scope 1 (inlined generic_cast::<&u8, &u8>) {
|
2023-07-02 17:50:24 +02:00
|
|
|
let mut _5: *const &u8;
|
2023-02-19 15:50:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
bb0: {
|
2023-06-06 09:47:00 -04:00
|
|
|
StorageLive(_2);
|
|
|
|
StorageLive(_3);
|
2023-10-16 19:58:20 +00:00
|
|
|
StorageLive(_4);
|
2024-08-18 14:26:34 -07:00
|
|
|
_4 = copy _1;
|
2023-07-02 17:50:24 +02:00
|
|
|
StorageLive(_5);
|
2024-08-18 14:26:34 -07:00
|
|
|
_5 = copy _4;
|
2023-07-02 17:50:24 +02:00
|
|
|
- _3 = move _5 as *const &u8 (PtrToPtr);
|
|
|
|
+ _3 = move _5;
|
|
|
|
StorageDead(_5);
|
2023-10-16 19:58:20 +00:00
|
|
|
StorageDead(_4);
|
2023-07-02 17:50:24 +02:00
|
|
|
- _2 = move _3 as *const &u8 (PtrToPtr);
|
|
|
|
+ _2 = move _3;
|
2024-08-18 14:26:34 -07:00
|
|
|
_0 = copy _2;
|
2023-07-02 17:50:24 +02:00
|
|
|
StorageDead(_3);
|
2023-06-06 09:47:00 -04:00
|
|
|
StorageDead(_2);
|
|
|
|
return;
|
2023-02-19 15:50:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|