We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aeac555 commit 9fb1c73Copy full SHA for 9fb1c73
compiler/rustc_mir_transform/src/ref_prop.rs
@@ -223,10 +223,10 @@ fn compute_replacement<'tcx>(
223
let mut place = *place;
224
// Try to see through `place` in order to collapse reborrow chains.
225
if place.projection.first() == Some(&PlaceElem::Deref)
226
- && let Value::Pointer(target, needs_unique) = targets[place.local]
+ && let Value::Pointer(target, inner_needs_unique) = targets[place.local]
227
// Only see through immutable reference and pointers, as we do not know yet if
228
// mutable references are fully replaced.
229
- && !needs_unique
+ && !inner_needs_unique
230
// Only collapse chain if the pointee is definitely live.
231
&& can_perform_opt(target, location)
232
{
0 commit comments