Fix compilation of libgcov with GCOV_LOCKED=0.
authorMartin Liska <mliska@suse.cz>
Thu, 7 Jun 2018 04:23:16 +0000 (06:23 +0200)
committerMartin Liska <marxin@gcc.gnu.org>
Thu, 7 Jun 2018 04:23:16 +0000 (04:23 +0000)
2018-06-07  Martin Liska  <mliska@suse.cz>

* libgcov-driver.c: Rename cs_all to all and assign it from
        all_prg.

From-SVN: r261261

libgcc/ChangeLog
libgcc/libgcov-driver.c

index 1ff66c54dadb8cac781e26e6c979b20d2861c431..793b1a3e4875e2a05c59c52c8b58a0accdca2f87 100644 (file)
@@ -1,3 +1,8 @@
+2018-06-07  Martin Liska  <mliska@suse.cz>
+
+       * libgcov-driver.c: Rename cs_all to all and assign it from
+        all_prg.
+
 2018-06-07  Martin Liska  <mliska@suse.cz>
 
         PR bootstrap/86057
index 7ae33b8d41797848c38f3f5023f2acd0035d71b0..1f2c4a74298cb7255faed62347a1835165553f80 100644 (file)
@@ -573,7 +573,7 @@ merge_summary (const char *filename __attribute__ ((unused)), int run_counted,
 {
 #if !GCOV_LOCKED 
   /* summary for all instances of program.  */ 
-  struct gcov_summary *cs_all;
+  struct gcov_summary *all;
 #endif 
 
   /* Merge the summary.  */
@@ -593,7 +593,7 @@ merge_summary (const char *filename __attribute__ ((unused)), int run_counted,
   else
     gcov_histogram_merge (prg->histogram, this_prg->histogram);
 #if !GCOV_LOCKED
-  all = &all_prg->ctrs[t_ix];
+  all = all_prg;
   if (!all->runs && prg->runs)
     {
       all->num = prg->num;