Commit 76f60b19 by Richard Guenther Committed by Richard Biener

tree-vectorizer.c (vect_print_dump_info): Avoid the file and location clutter…

tree-vectorizer.c (vect_print_dump_info): Avoid the file and location clutter when dumping to dump files.

2011-08-24  Richard Guenther  <rguenther@suse.de>

	* tree-vectorizer.c (vect_print_dump_info): Avoid the
	file and location clutter when dumping to dump files.

From-SVN: r178034
parent 0e3fdb48
2011-08-24 Richard Guenther <rguenther@suse.de>
* tree-vectorizer.c (vect_print_dump_info): Avoid the
file and location clutter when dumping to dump files.
2011-08-24 Simon Baldwin <simonb@google.com>
* gengtype-state.c (write_state): Remove timestamped header line.
......
......@@ -149,7 +149,10 @@ vect_print_dump_info (enum vect_verbosity_levels vl)
if (!current_function_decl || !vect_dump)
return false;
if (vect_location == UNKNOWN_LOC)
if (dump_file)
fprintf (vect_dump, "\n");
else if (vect_location == UNKNOWN_LOC)
fprintf (vect_dump, "\n%s:%d: note: ",
DECL_SOURCE_FILE (current_function_decl),
DECL_SOURCE_LINE (current_function_decl));
......
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