diff options
Diffstat (limited to 'gcc/gcov.c')
-rw-r--r-- | gcc/gcov.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1814,6 +1814,8 @@ read_graph_file (void) bbg_file_name, v, e); } bbg_stamp = gcov_read_unsigned (); + /* Read checksum. */ + gcov_read_unsigned (); bbg_cwd = xstrdup (gcov_read_string ()); bbg_supports_has_unexecuted_blocks = gcov_read_unsigned (); @@ -2031,6 +2033,9 @@ read_count_file (void) goto cleanup; } + /* Read checksum. */ + gcov_read_unsigned (); + while ((tag = gcov_read_unsigned ())) { unsigned length = gcov_read_unsigned (); |