]> gcc.gnu.org Git - gcc.git/commitdiff
libgcov-driver.c (run_accounted): Make global level static.
authorJan Hubicka <jh@suse.cz>
Tue, 19 Nov 2013 01:08:02 +0000 (02:08 +0100)
committerJan Hubicka <hubicka@gcc.gnu.org>
Tue, 19 Nov 2013 01:08:02 +0000 (01:08 +0000)
* libgcov-driver.c (run_accounted): Make global level static.
(gcov_exit_merge_summary): Silence warning; do not clear
run_accounted here.
(gcov_exit): Clear it here.

From-SVN: r204993

libgcc/ChangeLog
libgcc/libgcov-driver.c

index 12d4938b4b46daea043b75d56ede8f11809402ea..b5224f1989e835df3d1e9d3d63f10014b6db9693 100644 (file)
@@ -1,5 +1,10 @@
 2013-11-18  Jan Hubicka  <jh@suse.cz>
 
+       * libgcov-driver.c (run_accounted): Make global level static.
+       (gcov_exit_merge_summary): Silence warning; do not clear
+       run_accounted here.
+       (gcov_exit): Clear it here.
+
        * libgcov-driver.c (gcov_exit_merge_summary): Fix setting
        run_accounted.
 
index 763e0244bcaafff09f840791c4c89c34f54ca2c2..ec6dffd76b36e0222f407c9c1b875ec93016d042 100644 (file)
@@ -325,6 +325,10 @@ static char *gi_filename;
 static struct gcov_fn_buffer *fn_buffer;
 /* buffer for summary from other programs to be written out. */
 static struct gcov_summary_buffer *sum_buffer;
+/* If application calls fork or exec multiple times, we end up storing
+   profile repeadely.  We should not account this as multiple runs or
+   functions executed once may mistakely become cold.  */
+static int run_accounted = 0;
 
 /* This funtions computes the program level summary and the histo-gram.
    It computes and returns CRC32  and stored summari in THIS_PRG.  */
@@ -646,14 +650,11 @@ gcov_exit_write_gcda (const struct gcov_info *gi_ptr,
 
 static int
 gcov_exit_merge_summary (const struct gcov_info *gi_ptr, struct gcov_summary *prg,
-                        gcov_unsigned_t crc32, struct gcov_summary *all_prg)
+                        gcov_unsigned_t crc32,
+                        struct gcov_summary *all_prg __attribute__ ((unused)))
 {
   struct gcov_ctr_summary *cs_prg, *cs_tprg;
   unsigned t_ix;
-  /* If application calls fork or exec multiple times, we end up storing
-     profile repeadely.  We should not account this as multiple runs or
-     functions executed once may mistakely become cold.  */
-  static int run_accounted = 0;
 #if !GCOV_LOCKED 
   /* summary for all instances of program.  */ 
   struct gcov_ctr_summary *cs_all;
@@ -718,7 +719,6 @@ gcov_exit_merge_summary (const struct gcov_info *gi_ptr, struct gcov_summary *pr
 #endif
     }
 
-  run_accounted = 1;
   prg->checksum = crc32;
 
   return 0;
@@ -817,6 +817,7 @@ gcov_exit (void)
   /* Now merge each file.  */
   for (gi_ptr = gcov_list; gi_ptr; gi_ptr = gi_ptr->next)
     gcov_exit_dump_gcov (gi_ptr, &gf, crc32, &all_prg);
+  run_accounted = 1;
 
   if (gi_filename)
     free (gi_filename);
This page took 0.192082 seconds and 5 git commands to generate.