Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c5a016a

Browse files
committedJan 6, 2024
coverage: Never decrease the start column to 0
Line/column numbers are 1-based, so if the start column is already 1 at this point, we would decrement it to 0 and confuse `llvm-cov`.
1 parent 4776a90 commit c5a016a

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_mir_transform/src/coverage

1 file changed

+1
-1
lines changed
 

‎compiler/rustc_mir_transform/src/coverage/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ fn make_code_region(
277277
if span.hi() == span.lo() {
278278
// Extend an empty span by one character so the region will be counted.
279279
if span.hi() == body_span.hi() {
280-
start_col = start_col.saturating_sub(1);
280+
start_col = start_col.saturating_sub(1).max(1);
281281
} else {
282282
end_col = start_col + 1;
283283
}

0 commit comments

Comments
 (0)
Please sign in to comment.