diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/ipa-utils.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d629fa3..ab60e6a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2014-03-23 Teresa Johnson <tejohnson@google.com> + + * ipa-utils.c (ipa_print_order): Use specified dump file. + 2014-03-23 Eric Botcazou <ebotcazou@adacore.com> PR rtl-optimization/60601 diff --git a/gcc/ipa-utils.c b/gcc/ipa-utils.c index 328f8e5..dccecb1 100644 --- a/gcc/ipa-utils.c +++ b/gcc/ipa-utils.c @@ -55,7 +55,7 @@ ipa_print_order (FILE* out, fprintf (out, "\n\n ordered call graph: %s\n", note); for (i = count - 1; i >= 0; i--) - dump_cgraph_node (dump_file, order[i]); + dump_cgraph_node (out, order[i]); fprintf (out, "\n"); fflush (out); } |