From: Diego Novillo Date: Mon, 1 May 2006 14:45:47 +0000 (+0000) Subject: omp-low.c (dump_omp_region): Add newlines. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=444e96af874a765fa5801baf2207c77202047862;p=gcc.git omp-low.c (dump_omp_region): Add newlines. * omp-low.c (dump_omp_region): Add newlines. From-SVN: r113412 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bc5e24f6544..99942ebc939 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2006-05-01 Diego Novillo + + * omp-low.c (dump_omp_region): Add newlines. + 2006-04-30 Roger Sayle * common.opt (Woverflow): New command line option. diff --git a/gcc/omp-low.c b/gcc/omp-low.c index 519f48d39be..9c90b90a741 100644 --- a/gcc/omp-low.c +++ b/gcc/omp-low.c @@ -719,12 +719,12 @@ dump_omp_region (FILE *file, struct omp_region *region, int indent) if (region->cont) { - fprintf (file, "%*sbb %d: OMP_CONTINUE", indent, "", + fprintf (file, "%*sbb %d: OMP_CONTINUE\n", indent, "", region->cont->index); } if (region->exit) - fprintf (file, "%*sbb: %d: OMP_RETURN", indent, "", + fprintf (file, "%*sbb: %d: OMP_RETURN\n", indent, "", region->exit->index); else fprintf (file, "%*s[no exit marker]\n", indent, "");