Commit b55ddd43 by Jakub Jelinek Committed by Jakub Jelinek

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
parent 052aaace
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)
......
......@@ -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. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment