diff options
author | J"orn Rennecke <joern.rennecke@st.com> | 2006-07-17 14:44:48 +0000 |
---|---|---|
committer | Joern Rennecke <amylaar@gcc.gnu.org> | 2006-07-17 15:44:48 +0100 |
commit | 24a7799ea4d03dd01fe537ac2da65b41f6039bae (patch) | |
tree | ff661fb5805de209002f680c01355880f73d6feb /gcc/tree.h | |
parent | 9d335249c9fe3535dfbb0af94617d32890d74702 (diff) | |
download | gcc-24a7799ea4d03dd01fe537ac2da65b41f6039bae.zip gcc-24a7799ea4d03dd01fe537ac2da65b41f6039bae.tar.gz gcc-24a7799ea4d03dd01fe537ac2da65b41f6039bae.tar.bz2 |
re PR other/28251 (dumped addresses makes diffing dumps unusable)
gcc:
PR other/28251
* tree.h (dump_addr): Declare.
* print-tree.c (dump_addr): New function.
(print_node_brief, print_node): Use it.
* print-rtl.c (print_rtx): Likewise.
* common.opt (-fdump-noaddr): New option.
* doc/invoke.texi (-fdump-noaddr): Document.
* loop-unroll.c (si_info_hash): Make hash independent of addresses.
(ve_info_hash): Likewise.
gcc/testsuite:
PR other/28251
gcc.c-torture/unsorted/dump-noaddr.c: New test.
gcc.c-torture/unsorted/dump-noaddr.x: New driver.
From-SVN: r115519
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4340,6 +4340,7 @@ extern void print_rtl (FILE *, rtx); /* In print-tree.c */ extern void debug_tree (tree); #ifdef BUFSIZ +extern void dump_addr (FILE*, const char *, void *); extern void print_node (FILE *, const char *, tree, int); extern void print_node_brief (FILE *, const char *, tree, int); extern void indent_to (FILE *, int); |