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/common.opt | |
parent | 9d335249c9fe3535dfbb0af94617d32890d74702 (diff) | |
download | gcc-24a7799ea4d03dd01fe537ac2da65b41f6039bae.tar.gz |
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/common.opt')
-rw-r--r-- | gcc/common.opt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/common.opt b/gcc/common.opt index 3c5fc0ea544..204560f5fba 100644 --- a/gcc/common.opt +++ b/gcc/common.opt @@ -381,9 +381,13 @@ fdump- Common Joined RejectNegative -fdump-<type> Dump various compiler internals to a file +fdump-noaddr +Common Report Var(flag_dump_noaddr) +Suppress output of addresses in debugging dumps + fdump-unnumbered Common Report Var(flag_dump_unnumbered) VarExists -Suppress output of instruction numbers and line number notes in debugging dumps +Suppress output of instruction numbers, line number notes and addresses in debugging dumps fearly-inlining Common Report Var(flag_early_inlining) Init(1) |