re PR bootstrap/88714 (bootstrap comparison failure on armv7l since r265398)

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
This commit is contained in:
Jakub Jelinek 2019-01-11 13:05:54 +01:00 committed by Jakub Jelinek
parent 052aaaceed
commit b55ddd438a
2 changed files with 8 additions and 2 deletions

View 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)

View 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. */