File tree 2 files changed +11
-8
lines changed
compiler/rustc_mir_transform/src/coverage
2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -20,13 +20,16 @@ pub(super) fn extract_refined_covspans(
20
20
basic_coverage_blocks : & CoverageGraph ,
21
21
code_mappings : & mut impl Extend < mappings:: CodeMapping > ,
22
22
) {
23
- let sorted_spans =
23
+ let sorted_span_buckets =
24
24
from_mir:: mir_to_initial_sorted_coverage_spans ( mir_body, hir_info, basic_coverage_blocks) ;
25
- let coverage_spans = SpansRefiner :: refine_sorted_spans ( sorted_spans) ;
26
- code_mappings. extend ( coverage_spans. into_iter ( ) . map ( |RefinedCovspan { bcb, span, .. } | {
27
- // Each span produced by the generator represents an ordinary code region.
28
- mappings:: CodeMapping { span, bcb }
29
- } ) ) ;
25
+ for bucket in sorted_span_buckets {
26
+ let refined_spans = SpansRefiner :: refine_sorted_spans ( bucket) ;
27
+ code_mappings. extend ( refined_spans. into_iter ( ) . map ( |covspan| {
28
+ let RefinedCovspan { span, bcb, is_hole : _ } = covspan;
29
+ // Each span produced by the refiner represents an ordinary code region.
30
+ mappings:: CodeMapping { span, bcb }
31
+ } ) ) ;
32
+ }
30
33
}
31
34
32
35
#[ derive( Debug ) ]
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ pub(super) fn mir_to_initial_sorted_coverage_spans(
23
23
mir_body : & mir:: Body < ' _ > ,
24
24
hir_info : & ExtractedHirInfo ,
25
25
basic_coverage_blocks : & CoverageGraph ,
26
- ) -> Vec < SpanFromMir > {
26
+ ) -> Vec < Vec < SpanFromMir > > {
27
27
let & ExtractedHirInfo { body_span, .. } = hir_info;
28
28
29
29
let mut initial_spans = vec ! [ ] ;
@@ -67,7 +67,7 @@ pub(super) fn mir_to_initial_sorted_coverage_spans(
67
67
// requires a lot more complexity in the span refiner, for little benefit.)
68
68
initial_spans. dedup_by ( |b, a| a. span . source_equal ( b. span ) ) ;
69
69
70
- initial_spans
70
+ vec ! [ initial_spans]
71
71
}
72
72
73
73
/// Macros that expand into branches (e.g. `assert!`, `trace!`) tend to generate
You can’t perform that action at this time.
0 commit comments