mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-20 19:01:12 +08:00
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:
parent
76d3363a5f
commit
3725c2e302
@ -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
|
||||
|
@ -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");
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user