diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-29 14:16:15 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-29 14:16:15 +0000 |
commit | 90db18cd00e093136930290c2b8e757f741be398 (patch) | |
tree | c1c0024b6c9654a2e39c39dddf1756013f79e85b /gcc/tree-pretty-print.c | |
parent | 825718f9c5747747571eb60535e20c952eb6868b (diff) | |
download | gcc-90db18cd00e093136930290c2b8e757f741be398.tar.gz |
2007-08-29 Richard Guenther <rguenther@suse.de>
* tree-pretty-print.c (dump_generic_node): Print
label DECL_UID as D.%u.
* tree-dfa.c (dump_variable): Print DECL_UID as D.%u.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@127899 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-pretty-print.c')
-rw-r--r-- | gcc/tree-pretty-print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c index 265a56adf26..738fb0938c2 100644 --- a/gcc/tree-pretty-print.c +++ b/gcc/tree-pretty-print.c @@ -863,7 +863,7 @@ dump_generic_node (pretty_printer *buffer, tree node, int spc, int flags, pp_printf (buffer, "<L" HOST_WIDE_INT_PRINT_DEC ">", LABEL_DECL_UID (node)); else - pp_printf (buffer, "<D%u>", DECL_UID (node)); + pp_printf (buffer, "<D.%u>", DECL_UID (node)); break; case TYPE_DECL: |