ipa-utils.c (ipa_print_order): Use specified dump file.
authorTeresa Johnson <tejohnson@google.com>
Sun, 23 Mar 2014 15:07:21 +0000 (15:07 +0000)
committerTeresa Johnson <tejohnson@gcc.gnu.org>
Sun, 23 Mar 2014 15:07:21 +0000 (15:07 +0000)
2014-03-23  Teresa Johnson  <tejohnson@google.com>

* ipa-utils.c (ipa_print_order): Use specified dump file.

From-SVN: r208773

gcc/ChangeLog
gcc/ipa-utils.c

index d629fa3eb8e347c892bd9b9a8753e549f5b906d4..ab60e6a4f7bc999fccfc347502b6a5b62f453a80 100644 (file)
@@ -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
index 328f8e5cc0858e2e85ce034561f4f6b2feec83ee..dccecb16a5ba72d3c9f4e42c74642902b02cbe1d 100644 (file)
@@ -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);
 }