diff options
author | Richard Guenther <rguenther@suse.de> | 2007-08-29 14:16:15 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2007-08-29 14:16:15 +0000 |
commit | ea53115fa076713deb5790e965b0875712e65686 (patch) | |
tree | c1c0024b6c9654a2e39c39dddf1756013f79e85b /gcc/tree-pretty-print.c | |
parent | ad4a2f64b9bf7a77e8db1ddcb4ef5275f1897ac4 (diff) | |
download | gcc-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.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: |