OSDN Git Service

* omp-low.c (dump_omp_region): Add newlines.
authordnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 1 May 2006 14:45:47 +0000 (14:45 +0000)
committerdnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 1 May 2006 14:45:47 +0000 (14:45 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@113412 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/omp-low.c

index bc5e24f..99942eb 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 519f48d..9c90b90 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, "");