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 | |
parent | ad4a2f64b9bf7a77e8db1ddcb4ef5275f1897ac4 (diff) | |
download | gcc-ea53115fa076713deb5790e965b0875712e65686.zip gcc-ea53115fa076713deb5790e965b0875712e65686.tar.gz gcc-ea53115fa076713deb5790e965b0875712e65686.tar.bz2 |
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')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/tree-dfa.c | 2 | ||||
-rw-r--r-- | gcc/tree-pretty-print.c | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c649ee2..e9f24b4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +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. + 2007-08-29 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> * gcc/builtin-types.def (BT_FN_PTR_PTR_SIZE): New type. diff --git a/gcc/tree-dfa.c b/gcc/tree-dfa.c index 7832b68..e6b593e 100644 --- a/gcc/tree-dfa.c +++ b/gcc/tree-dfa.c @@ -325,7 +325,7 @@ dump_variable (FILE *file, tree var) ann = var_ann (var); - fprintf (file, ", UID %u", (unsigned) DECL_UID (var)); + fprintf (file, ", UID D.%u", (unsigned) DECL_UID (var)); fprintf (file, ", "); print_generic_expr (file, TREE_TYPE (var), dump_flags); diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c index 265a56a..738fb09 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: |