Commit b614f27d by Richard Guenther Committed by Richard Biener

tree-vectorizer.c (vectorize_loops): Properly guard vectorizer verboseness.

2009-12-10  Richard Guenther  <rguenther@suse.de>
	Allan Sandfeld Jensen  <linux@carewolf.com>

	* tree-vectorizer.c (vectorize_loops): Properly guard
	vectorizer verboseness.

Co-Authored-By: Allan Sandfeld Jensen <linux@carewolf.com>

From-SVN: r155128
parent 790ad3b5
2009-12-10 Richard Guenther <rguenther@suse.de>
Allan Sandfeld Jensen <linux@carewolf.com>
* tree-vectorizer.c (vectorize_loops): Properly guard
vectorizer verboseness.
2009-12-10 Ben Elliston <bje@au.ibm.com> 2009-12-10 Ben Elliston <bje@au.ibm.com>
* fwprop.c (free_load_extend): Initialise `use'. * fwprop.c (free_load_extend): Initialise `use'.
...@@ -230,8 +230,8 @@ vectorize_loops (void) ...@@ -230,8 +230,8 @@ vectorize_loops (void)
statistics_counter_event (cfun, "Vectorized loops", num_vectorized_loops); statistics_counter_event (cfun, "Vectorized loops", num_vectorized_loops);
if (vect_print_dump_info (REPORT_UNVECTORIZED_LOCATIONS) if (vect_print_dump_info (REPORT_UNVECTORIZED_LOCATIONS)
|| (vect_print_dump_info (REPORT_VECTORIZED_LOCATIONS) || (num_vectorized_loops > 0
&& num_vectorized_loops > 0)) && vect_print_dump_info (REPORT_VECTORIZED_LOCATIONS)))
fprintf (vect_dump, "vectorized %u loops in function.\n", fprintf (vect_dump, "vectorized %u loops in function.\n",
num_vectorized_loops); num_vectorized_loops);
......
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