diff options
author | Jeremy Bettis <jbettis@google.com> | 2025-03-28 00:54:27 -0700 |
---|---|---|
committer | Jason Merrill <jason@redhat.com> | 2025-03-28 18:19:41 -0400 |
commit | d9b56c65a2697e0d7a6c0f15f1977803dc94579b (patch) | |
tree | 5eb049f987ac48b7c0f6a0b43d49999377190beb /libcpp | |
parent | 878812b6f6905774ab37cb78903e3e11bf1c508c (diff) | |
download | gcc-d9b56c65a2697e0d7a6c0f15f1977803dc94579b.zip gcc-d9b56c65a2697e0d7a6c0f15f1977803dc94579b.tar.gz gcc-d9b56c65a2697e0d7a6c0f15f1977803dc94579b.tar.bz2 |
libcpp: Fix incorrect line numbers in large files [PR108900]
This patch addresses an issue in the C preprocessor where incorrect
line number information is generated when processing files with a
large number of lines. The problem arises from improper handling
of location intervals in the line map, particularly when locations
exceed LINE_MAP_MAX_LOCATION_WITH_PACKED_RANGES.
By ensuring that the highest location is not decremented if it
would move to a different ordinary map, this fix resolves
the line number discrepancies observed in certain test cases.
This change improves the accuracy of line number reporting, benefiting
users relying on precise code coverage and debugging information.
libcpp/ChangeLog:
PR preprocessor/108900
* files.cc (_cpp_stack_file): Do not decrement highest_location
across distinct maps.
Signed-off-by: Jeremy Bettis <jbettis@google.com>
Signed-off-by: Yash Shinde <Yash.Shinde@windriver.com>
Diffstat (limited to 'libcpp')
-rw-r--r-- | libcpp/files.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libcpp/files.cc b/libcpp/files.cc index 1ed19c5..c1abde6 100644 --- a/libcpp/files.cc +++ b/libcpp/files.cc @@ -1046,6 +1046,15 @@ _cpp_stack_file (cpp_reader *pfile, _cpp_file *file, include_type type, && type < IT_DIRECTIVE_HWM && (pfile->line_table->highest_location != LINE_MAP_MAX_LOCATION - 1)); + + if (decrement && LINEMAPS_ORDINARY_USED (pfile->line_table)) + { + const line_map_ordinary *map + = LINEMAPS_LAST_ORDINARY_MAP (pfile->line_table); + if (map && map->start_location == pfile->line_table->highest_location) + decrement = false; + } + if (decrement) pfile->line_table->highest_location--; |