From 0f9b05453bb850389a494c6e6b81fe2bfbd1da77 Mon Sep 17 00:00:00 2001 From: dnovillo Date: Mon, 1 May 2006 14:45:47 +0000 Subject: [PATCH] * omp-low.c (dump_omp_region): Add newlines. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@113412 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 4 ++++ gcc/omp-low.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) 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, ""); -- 2.11.0