diff options
author | Diego Novillo <dnovillo@redhat.com> | 2006-05-01 14:45:47 +0000 |
---|---|---|
committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2006-05-01 10:45:47 -0400 |
commit | 444e96af874a765fa5801baf2207c77202047862 (patch) | |
tree | d89a509da55fdffda3a1fe967242f2d0138d6c10 /gcc | |
parent | 9386bd20a37bd8e586824a4bfd7934781c5b69e1 (diff) | |
download | gcc-444e96af874a765fa5801baf2207c77202047862.zip gcc-444e96af874a765fa5801baf2207c77202047862.tar.gz gcc-444e96af874a765fa5801baf2207c77202047862.tar.bz2 |
omp-low.c (dump_omp_region): Add newlines.
* omp-low.c (dump_omp_region): Add newlines.
From-SVN: r113412
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/omp-low.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bc5e24f..99942eb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2006-05-01 Diego Novillo <dnovillo@redhat.com> + + * omp-low.c (dump_omp_region): Add newlines. + 2006-04-30 Roger Sayle <roger@eyesopen.com> * common.opt (Woverflow): New command line option. diff --git a/gcc/omp-low.c b/gcc/omp-low.c index 519f48d..9c90b90 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, ""); |