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
This commit is contained in:
Tobias Grosser 2008-12-10 00:35:51 +00:00 committed by Tobias Grosser
parent 76d3363a5f
commit 3725c2e302
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
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

View File

@ -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");
}