diff options
author | Teresa Johnson <tejohnson@google.com> | 2014-03-23 15:07:21 +0000 |
---|---|---|
committer | Teresa Johnson <tejohnson@gcc.gnu.org> | 2014-03-23 15:07:21 +0000 |
commit | 1858c2d3cea9a4b471e6a62c1fc37dacd1ca5439 (patch) | |
tree | 5653e9f70f3533e64f3dccdd56b47c9cd7b938a2 | |
parent | f87604f8d2b64eb3287b061dfe0d22f8d688ccd0 (diff) | |
download | gcc-1858c2d3cea9a4b471e6a62c1fc37dacd1ca5439.zip gcc-1858c2d3cea9a4b471e6a62c1fc37dacd1ca5439.tar.gz gcc-1858c2d3cea9a4b471e6a62c1fc37dacd1ca5439.tar.bz2 |
ipa-utils.c (ipa_print_order): Use specified dump file.
2014-03-23 Teresa Johnson <tejohnson@google.com>
* ipa-utils.c (ipa_print_order): Use specified dump file.
From-SVN: r208773
-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); } |