aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-pretty-print.c
diff options
context:
space:
mode:
authorXinliang David Li <davidxl@google.com>2014-06-17 20:39:55 +0000
committerXinliang David Li <davidxl@gcc.gnu.org>2014-06-17 20:39:55 +0000
commit90d0d8d3dbf02ec3efa933645033789231dbece7 (patch)
tree8aad9d454a40e871527e0a422a4694178d77f18a /gcc/tree-pretty-print.c
parent72f4065c694450688a0e092e9dd5ae3e36c7d5cf (diff)
downloadgcc-90d0d8d3dbf02ec3efa933645033789231dbece7.zip
gcc-90d0d8d3dbf02ec3efa933645033789231dbece7.tar.gz
gcc-90d0d8d3dbf02ec3efa933645033789231dbece7.tar.bz2
Fix dot dump bug
From-SVN: r211746
Diffstat (limited to 'gcc/tree-pretty-print.c')
-rw-r--r--gcc/tree-pretty-print.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c
index c5b4aee..3f6152f 100644
--- a/gcc/tree-pretty-print.c
+++ b/gcc/tree-pretty-print.c
@@ -3465,6 +3465,7 @@ dump_function_header (FILE *dump_file, tree fdecl, int flags)
fprintf (dump_file, ", decl_uid=%d", DECL_UID (fdecl));
if (node)
{
+ fprintf (dump_file, ", cgraph_uid=%d", node->uid);
fprintf (dump_file, ", symbol_order=%d)%s\n\n", node->order,
node->frequency == NODE_FREQUENCY_HOT
? " (hot)"