Commit 444e96af by Diego Novillo Committed by Diego Novillo

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


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

From-SVN: r113412
parent 9386bd20
2006-05-01 Diego Novillo <dnovillo@redhat.com>
* omp-low.c (dump_omp_region): Add newlines.
2006-04-30 Roger Sayle <roger@eyesopen.com> 2006-04-30 Roger Sayle <roger@eyesopen.com>
* common.opt (Woverflow): New command line option. * common.opt (Woverflow): New command line option.
......
...@@ -719,12 +719,12 @@ dump_omp_region (FILE *file, struct omp_region *region, int indent) ...@@ -719,12 +719,12 @@ dump_omp_region (FILE *file, struct omp_region *region, int indent)
if (region->cont) if (region->cont)
{ {
fprintf (file, "%*sbb %d: OMP_CONTINUE", indent, "", fprintf (file, "%*sbb %d: OMP_CONTINUE\n", indent, "",
region->cont->index); region->cont->index);
} }
if (region->exit) if (region->exit)
fprintf (file, "%*sbb: %d: OMP_RETURN", indent, "", fprintf (file, "%*sbb: %d: OMP_RETURN\n", indent, "",
region->exit->index); region->exit->index);
else else
fprintf (file, "%*s[no exit marker]\n", indent, ""); fprintf (file, "%*s[no exit marker]\n", indent, "");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment