rust/tests/mir-opt/instsimplify/casts.redundant.InstSimplify.diff
Nilstrieb b6657a8ad4 Never consider raw pointer casts to be trival
HIR typeck tries to figure out which casts are trivial by doing them as
coercions and seeing whether this works. Since HIR typeck is oblivious
of lifetimes, this doesn't work for pointer casts that only change the
lifetime of the pointee, which are, as borrowck will tell you, not
trivial.

This change makes it so that raw pointer casts are never considered
trivial.

This also incidentally fixes the "trivial cast" lint false positive on
the same code. Unfortunately, "trivial cast" lints are now never emitted
on raw pointer casts, even if they truly are trivial. This could be
fixed by also doing the lint in borrowck for raw pointers specifically.
2023-10-25 23:15:18 +02:00

35 lines
866 B
Diff

- // MIR for `redundant` before InstSimplify
+ // MIR for `redundant` after InstSimplify
fn redundant(_1: *const &u8) -> *const &u8 {
debug x => _1;
let mut _0: *const &u8;
let mut _2: *const &u8;
let mut _3: *const &u8;
let mut _4: *const &u8;
scope 1 (inlined generic_cast::<&u8, &u8>) {
debug x => _4;
let mut _5: *const &u8;
}
bb0: {
StorageLive(_2);
StorageLive(_3);
StorageLive(_4);
_4 = _1;
StorageLive(_5);
_5 = _4;
- _3 = move _5 as *const &u8 (PtrToPtr);
+ _3 = move _5;
StorageDead(_5);
StorageDead(_4);
- _2 = move _3 as *const &u8 (PtrToPtr);
+ _2 = move _3;
_0 = _2;
StorageDead(_3);
StorageDead(_2);
return;
}
}