Commit f58be90e by Sebastian Pop Committed by Sebastian Pop

graphite-poly.c (print_scop): Fix pretty printing of a SCoP.

2009-10-15  Sebastian Pop  <sebastian.pop@amd.com>

	* graphite-poly.c (print_scop): Fix pretty printing of a SCoP.

From-SVN: r154592
parent 4e4ee197
2009-10-15 Sebastian Pop <sebastian.pop@amd.com> 2009-10-15 Sebastian Pop <sebastian.pop@amd.com>
* graphite-poly.c (print_scop): Fix pretty printing of a SCoP.
2009-10-15 Sebastian Pop <sebastian.pop@amd.com>
* doc/passes.texi: Document the Graphite infrastructure. * doc/passes.texi: Document the Graphite infrastructure.
2009-10-15 Sebastian Pop <sebastian.pop@amd.com> 2009-10-15 Sebastian Pop <sebastian.pop@amd.com>
......
...@@ -646,8 +646,6 @@ print_scop (FILE *file, scop_p scop) ...@@ -646,8 +646,6 @@ print_scop (FILE *file, scop_p scop)
for (i = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), i, pbb); i++) for (i = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), i, pbb); i++)
print_pbb (file, pbb); print_pbb (file, pbb);
fprintf (file, ")\n");
fprintf (file, "original_lst (\n"); fprintf (file, "original_lst (\n");
print_lst (file, SCOP_ORIGINAL_SCHEDULE (scop), 0); print_lst (file, SCOP_ORIGINAL_SCHEDULE (scop), 0);
fprintf (file, ")\n"); fprintf (file, ")\n");
...@@ -655,6 +653,8 @@ print_scop (FILE *file, scop_p scop) ...@@ -655,6 +653,8 @@ print_scop (FILE *file, scop_p scop)
fprintf (file, "transformed_lst (\n"); fprintf (file, "transformed_lst (\n");
print_lst (file, SCOP_TRANSFORMED_SCHEDULE (scop), 0); print_lst (file, SCOP_TRANSFORMED_SCHEDULE (scop), 0);
fprintf (file, ")\n"); fprintf (file, ")\n");
fprintf (file, ")\n");
} }
/* Print to STDERR the domain of PBB. */ /* Print to STDERR the domain of PBB. */
......
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