diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-pretty-print.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9b9fc41..15c114a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-06-01 David Li <davidxl@google.com> + + PR middle-end/49261 + * tree-pretty-print.c (dump_function_header): Format cleanup. + 2011-06-01 Kaz Kojima <kkojima@gcc.gnu.org> PR target/49238 diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c index f498819..bfdcad6 100644 --- a/gcc/tree-pretty-print.c +++ b/gcc/tree-pretty-print.c @@ -3034,7 +3034,7 @@ dump_function_header (FILE *dump_file, tree fdecl) if (node) { - fprintf (dump_file, "\n;; Function %s (%s, funcdef_no=%d, decl_uid = %d, cgraph_uid=%d)", + fprintf (dump_file, "\n;; Function %s (%s, funcdef_no=%d, decl_uid=%d, cgraph_uid=%d)", dname, aname, fun->funcdef_no, DECL_UID(fdecl), node->uid); fprintf (dump_file, "%s\n\n", node->frequency == NODE_FREQUENCY_HOT |