@@ -515,7 +515,7 @@ impl Visitor<'tcx> for Validator<'mir, 'tcx> {
515
515
// Special-case reborrows to be more like a copy of a reference.
516
516
match * rvalue {
517
517
Rvalue :: Ref ( _, kind, place) => {
518
- if let Some ( reborrowed_proj ) = place_as_reborrow ( self . tcx , self . body , place) {
518
+ if let Some ( reborrowed_place_ref ) = place_as_reborrow ( self . tcx , self . body , place) {
519
519
let ctx = match kind {
520
520
BorrowKind :: Shared => {
521
521
PlaceContext :: NonMutatingUse ( NonMutatingUseContext :: SharedBorrow )
@@ -530,21 +530,21 @@ impl Visitor<'tcx> for Validator<'mir, 'tcx> {
530
530
PlaceContext :: MutatingUse ( MutatingUseContext :: Borrow )
531
531
}
532
532
} ;
533
- self . visit_local ( & place . local , ctx, location) ;
534
- self . visit_projection ( place . local , reborrowed_proj , ctx, location) ;
533
+ self . visit_local ( & reborrowed_place_ref . local , ctx, location) ;
534
+ self . visit_projection ( reborrowed_place_ref , ctx, location) ;
535
535
return ;
536
536
}
537
537
}
538
538
Rvalue :: AddressOf ( mutbl, place) => {
539
- if let Some ( reborrowed_proj ) = place_as_reborrow ( self . tcx , self . body , place) {
539
+ if let Some ( reborrowed_place_ref ) = place_as_reborrow ( self . tcx , self . body , place) {
540
540
let ctx = match mutbl {
541
541
Mutability :: Not => {
542
542
PlaceContext :: NonMutatingUse ( NonMutatingUseContext :: AddressOf )
543
543
}
544
544
Mutability :: Mut => PlaceContext :: MutatingUse ( MutatingUseContext :: AddressOf ) ,
545
545
} ;
546
- self . visit_local ( & place . local , ctx, location) ;
547
- self . visit_projection ( place . local , reborrowed_proj , ctx, location) ;
546
+ self . visit_local ( & reborrowed_place_ref . local , ctx, location) ;
547
+ self . visit_projection ( reborrowed_place_ref , ctx, location) ;
548
548
return ;
549
549
}
550
550
}
@@ -1039,7 +1039,7 @@ fn place_as_reborrow(
1039
1039
tcx : TyCtxt < ' tcx > ,
1040
1040
body : & Body < ' tcx > ,
1041
1041
place : Place < ' tcx > ,
1042
- ) -> Option < & ' a [ PlaceElem < ' tcx > ] > {
1042
+ ) -> Option < PlaceRef < ' tcx > > {
1043
1043
match place. as_ref ( ) . last_projection ( ) {
1044
1044
Some ( ( place_base, ProjectionElem :: Deref ) ) => {
1045
1045
// A borrow of a `static` also looks like `&(*_1)` in the MIR, but `_1` is a `const`
@@ -1048,13 +1048,14 @@ fn place_as_reborrow(
1048
1048
None
1049
1049
} else {
1050
1050
// Ensure the type being derefed is a reference and not a raw pointer.
1051
- //
1052
1051
// This is sufficient to prevent an access to a `static mut` from being marked as a
1053
1052
// reborrow, even if the check above were to disappear.
1054
1053
let inner_ty = place_base. ty ( body, tcx) . ty ;
1055
- match inner_ty. kind ( ) {
1056
- ty:: Ref ( ..) => Some ( place_base. projection ) ,
1057
- _ => None ,
1054
+
1055
+ if let ty:: Ref ( ..) = inner_ty. kind ( ) {
1056
+ return Some ( place_base) ;
1057
+ } else {
1058
+ return None ;
1058
1059
}
1059
1060
}
1060
1061
}
0 commit comments