omp-low.c (dump_omp_region): Add newlines.

* omp-low.c (dump_omp_region): Add newlines.

From-SVN: r113412
This commit is contained in:
Diego Novillo 2006-05-01 14:45:47 +00:00 committed by Diego Novillo
parent 9386bd20a3
commit 444e96af87
2 changed files with 6 additions and 2 deletions

View 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.

View 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, "");