Patch gcovr script

pull/304/head
VintagePC 2023-09-17 19:00:07 -04:00
parent 1d1d2f23ec
commit 6340421f51
1 changed files with 1 additions and 1 deletions

View File

@ -632,7 +632,7 @@ def process_gcov_data(data_fname, covdata, source_fname, options):
elif tmp[0] == '=':
is_code_statement = True
uncovered_exceptional.add(lineno)
elif tmp[0] in "0123456789":
elif tmp[0] in "0123456789" and not segments[0].endswith("*"):
is_code_statement = True
covered[lineno] = int(segments[0].strip())
elif tmp.startswith('branch'):