re PR bootstrap/88714 (bootstrap comparison failure on armv7l since r265398)
authorJakub Jelinek <jakub@redhat.com>
Fri, 11 Jan 2019 12:05:54 +0000 (13:05 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Fri, 11 Jan 2019 12:05:54 +0000 (13:05 +0100)
PR bootstrap/88714
* passes.c (finish_optimization_passes): Call print_combine_total_stats
inside of pass_combine_1 dump rather than pass_profile_1.

From-SVN: r267839

gcc/ChangeLog
gcc/passes.c

index 5d9c536e41411f63f74e0b55f29d77deefab8b5a..13b178471e052745df25be021f5abe3e72e1ccb0 100644 (file)
@@ -1,3 +1,9 @@
+2019-01-11  Jakub Jelinek  <jakub@redhat.com>
+
+       PR bootstrap/88714
+       * passes.c (finish_optimization_passes): Call print_combine_total_stats
+       inside of pass_combine_1 dump rather than pass_profile_1.
+
 2019-01-11  Tom de Vries  <tdevries@suse.de>
 
        * config/nvptx/nvptx.c (PTX_CTA_NUM_BARRIERS, PTX_PER_CTA_BARRIER)
index c007aa06eb09313184c0a7e4e6befc2901c12ef4..f838b586bff2bef6b075e7f7d59837bb3da00683 100644 (file)
@@ -361,9 +361,9 @@ finish_optimization_passes (void)
 
   if (optimize > 0)
     {
-      dumps->dump_start (pass_profile_1->static_pass_number, NULL);
+      dumps->dump_start (pass_combine_1->static_pass_number, NULL);
       print_combine_total_stats ();
-      dumps->dump_finish (pass_profile_1->static_pass_number);
+      dumps->dump_finish (pass_combine_1->static_pass_number);
     }
 
   /* Do whatever is necessary to finish printing the graphs.  */