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
This commit is contained in:
Richard Guenther 2009-12-10 14:16:28 +00:00 committed by Richard Biener
parent 790ad3b5b4
commit b614f27d29
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
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>
* fwprop.c (free_load_extend): Initialise `use'.

View File

@ -230,8 +230,8 @@ vectorize_loops (void)
statistics_counter_event (cfun, "Vectorized loops", num_vectorized_loops);
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",
num_vectorized_loops);