diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bc5e24f65446..99942ebc9397 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 519f48d39bee..9c90b90a741b 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, "");