Commit 3725c2e3 by Tobias Grosser Committed by Tobias Grosser

graphite.c (print_graphite_bb): Fix printing to file != dump_file.

2008-12-09  Tobias Grosser  <grosser@fim.uni-passau.de>

	* graphite.c (print_graphite_bb): Fix printing to file != dump_file.

From-SVN: r142626
parent 76d3363a
2008-12-09 Tobias Grosser <grosser@fim.uni-passau.de>
* graphite.c (print_graphite_bb): Fix printing to file != dump_file.
2008-12-09 Jakub Jelinek <jakub@redhat.com>
PR middle-end/38454
......@@ -495,7 +495,7 @@ print_graphite_bb (FILE *file, graphite_bb_p gb, int indent, int verbosity)
if (GBB_DOMAIN (gb))
{
fprintf (file, " (domain: \n");
cloog_matrix_print (dump_file, GBB_DOMAIN (gb));
cloog_matrix_print (file, GBB_DOMAIN (gb));
fprintf (file, " )\n");
}
......@@ -525,7 +525,7 @@ print_graphite_bb (FILE *file, graphite_bb_p gb, int indent, int verbosity)
if (GBB_CONDITIONS (gb))
{
fprintf (file, " (conditions: \n");
dump_gbb_conditions (dump_file, gb);
dump_gbb_conditions (file, gb);
fprintf (file, " )\n");
}
......
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