summaryrefslogtreecommitdiff
path: root/gcc/tree-pretty-print.c
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2007-08-29 14:16:15 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2007-08-29 14:16:15 +0000
commitea53115fa076713deb5790e965b0875712e65686 (patch)
treec1c0024b6c9654a2e39c39dddf1756013f79e85b /gcc/tree-pretty-print.c
parentad4a2f64b9bf7a77e8db1ddcb4ef5275f1897ac4 (diff)
downloadgcc-ea53115fa076713deb5790e965b0875712e65686.tar.gz
tree-pretty-print.c (dump_generic_node): Print label DECL_UID as D.%u.
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. From-SVN: r127899
Diffstat (limited to 'gcc/tree-pretty-print.c')
-rw-r--r--gcc/tree-pretty-print.c2
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: