diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-12-01 10:02:24 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-12-01 10:02:24 +0000 |
commit | 45b2f957d36f4193e7a92883e9903a05c4a650ba (patch) | |
tree | 9339d860b9e899a5c55952fd737f529f264d99eb /gcc/final.c | |
parent | 43e39b42f3afb986f9d56d50706909fd075179ee (diff) | |
download | gcc-45b2f957d36f4193e7a92883e9903a05c4a650ba.tar.gz |
2009-12-01 Richard Guenther <rguenther@suse.de>
* final.c (rest_of_clean_state): If -fcompare-debug is
given dump final insns without UIDs.
* tree-ssa-live.c (remove_unused_scope_block_p): Remove
after_inlining checks.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@154869 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/final.c b/gcc/final.c index 5d037f53933..0d19562acbf 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -4382,6 +4382,8 @@ rest_of_clean_state (void) : ""); flag_dump_noaddr = flag_dump_unnumbered = 1; + if (flag_compare_debug_opt || flag_compare_debug) + dump_flags |= TDF_NOUID; for (insn = get_insns (); insn; insn = NEXT_INSN (insn)) if (LABEL_P (insn)) |