diff options
author | Xinliang David Li <davidxl@google.com> | 2014-06-17 20:39:55 +0000 |
---|---|---|
committer | Xinliang David Li <davidxl@gcc.gnu.org> | 2014-06-17 20:39:55 +0000 |
commit | 90d0d8d3dbf02ec3efa933645033789231dbece7 (patch) | |
tree | 8aad9d454a40e871527e0a422a4694178d77f18a /gcc/tree-pretty-print.c | |
parent | 72f4065c694450688a0e092e9dd5ae3e36c7d5cf (diff) | |
download | gcc-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.c | 1 |
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)" |