Skip to content

Commit 9fb1c73

Browse files
committed
Avoid shadowing.
1 parent aeac555 commit 9fb1c73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_mir_transform/src/ref_prop.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -223,10 +223,10 @@ fn compute_replacement<'tcx>(
223223
let mut place = *place;
224224
// Try to see through `place` in order to collapse reborrow chains.
225225
if place.projection.first() == Some(&PlaceElem::Deref)
226-
&& let Value::Pointer(target, needs_unique) = targets[place.local]
226+
&& let Value::Pointer(target, inner_needs_unique) = targets[place.local]
227227
// Only see through immutable reference and pointers, as we do not know yet if
228228
// mutable references are fully replaced.
229-
&& !needs_unique
229+
&& !inner_needs_unique
230230
// Only collapse chain if the pointee is definitely live.
231231
&& can_perform_opt(target, location)
232232
{

0 commit comments

Comments
 (0)