omp-low.c (dump_omp_region): Add newlines.
authorDiego Novillo <dnovillo@redhat.com>
Mon, 1 May 2006 14:45:47 +0000 (14:45 +0000)
committerDiego Novillo <dnovillo@gcc.gnu.org>
Mon, 1 May 2006 14:45:47 +0000 (10:45 -0400)
* omp-low.c (dump_omp_region): Add newlines.

From-SVN: r113412

gcc/ChangeLog
gcc/omp-low.c

index bc5e24f6544650852a287169f64915f480ed6468..99942ebc9397c145f56b06bb2e05b4b2ce5c6fa9 100644 (file)
@@ -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.
index 519f48d39bee9a6d0accc665c089fc6d21533f2d..9c90b90a741b88932958f4728f0064d534065e13 100644 (file)
@@ -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, "");