File tree 1 file changed +1
-3
lines changed
compiler/rustc_mir_dataflow/src
1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,6 @@ impl DenseLocationMap {
30
30
v
31
31
} )
32
32
. collect ( ) ;
33
- debug ! ( "DenseLocationMap: statements_before_block={:#?}" , statements_before_block) ;
34
- debug ! ( "DenseLocationMap: num_points={:#?}" , num_points) ;
35
33
36
34
let mut basic_blocks = IndexVec :: with_capacity ( num_points) ;
37
35
for ( bb, bb_data) in body. basic_blocks . iter_enumerated ( ) {
@@ -55,7 +53,7 @@ impl DenseLocationMap {
55
53
PointIndex :: new ( start_index + statement_index)
56
54
}
57
55
58
- /// Converts a `Location` into a `PointIndex `. O(1).
56
+ /// Returns the `PointIndex` for the first statement in the given `BasicBlock `. O(1).
59
57
#[ inline]
60
58
pub fn entry_point ( & self , block : BasicBlock ) -> PointIndex {
61
59
let start_index = self . statements_before_block [ block] ;
You can’t perform that action at this time.
0 commit comments