This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
compiler/rustc_mir_dataflow/src Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -560,12 +560,12 @@ impl<V: Clone + HasTop + HasBottom> State<V> {
560
560
}
561
561
}
562
562
563
- /// Retrieve the value stored for a place, or ⊥ if it is not tracked.
563
+ /// Retrieve the value stored for a place, or ⊤ if it is not tracked.
564
564
pub fn get ( & self , place : PlaceRef < ' _ > , map : & Map ) -> V {
565
565
map. find ( place) . map ( |place| self . get_idx ( place, map) ) . unwrap_or ( V :: top ( ) )
566
566
}
567
567
568
- /// Retrieve the value stored for a place index, or ⊥ if it is not tracked.
568
+ /// Retrieve the value stored for a place index, or ⊤ if it is not tracked.
569
569
pub fn get_idx ( & self , place : PlaceIndex , map : & Map ) -> V {
570
570
match & self . 0 {
571
571
StateData :: Reachable ( values) => {
@@ -652,7 +652,7 @@ impl Map {
652
652
mut filter : impl FnMut ( Ty < ' tcx > ) -> bool ,
653
653
exclude : & FxHashSet < Place < ' tcx > > ,
654
654
) {
655
- // This is used to tell whether a type is `! Freeze`.
655
+ // This is used to tell whether a type is `Freeze`.
656
656
let param_env = tcx. param_env_reveal_all_normalized ( body. source . def_id ( ) ) ;
657
657
658
658
let mut projection = Vec :: new ( ) ;
You can’t perform that action at this time.
0 commit comments