aboutsummaryrefslogtreecommitdiff
path: root/gcc/gimple-pretty-print.c
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2013-04-08 12:35:26 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2013-04-08 12:35:26 +0000
commit451dabda42522372cfe55e7b6433b19b6df625d2 (patch)
treeb4ce6ba90777b215dbdb2ce921d49e0d214ccb4b /gcc/gimple-pretty-print.c
parent3b088b475ae0a65236db759996dce4406b6abb70 (diff)
downloadgcc-451dabda42522372cfe55e7b6433b19b6df625d2.zip
gcc-451dabda42522372cfe55e7b6433b19b6df625d2.tar.gz
gcc-451dabda42522372cfe55e7b6433b19b6df625d2.tar.bz2
gimple-pretty-print.c (debug_gimple_stmt): Do not print extra newline.
2013-04-08 Richard Biener <rguenther@suse.de> * gimple-pretty-print.c (debug_gimple_stmt): Do not print extra newline. * tree-vect-loop.c (vect_determine_vectorization_factor): Dump determined vector type. (vect_analyze_data_refs): Likewise. (vect_get_new_vect_var): Adjust. (vect_create_destination_var): Preserve SSA name versions. * tree-vect-stmts.c (get_vectype_for_scalar_type_and_size): Do not dump anything here. * gfortran.dg/vect/fast-math-mgrid-resid.f: Adjust. From-SVN: r197578
Diffstat (limited to 'gcc/gimple-pretty-print.c')
-rw-r--r--gcc/gimple-pretty-print.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/gimple-pretty-print.c b/gcc/gimple-pretty-print.c
index f3e66d6..ddb086c 100644
--- a/gcc/gimple-pretty-print.c
+++ b/gcc/gimple-pretty-print.c
@@ -84,7 +84,6 @@ DEBUG_FUNCTION void
debug_gimple_stmt (gimple gs)
{
print_gimple_stmt (stderr, gs, 0, TDF_VOPS|TDF_MEMSYMS);
- fprintf (stderr, "\n");
}