diff options
author | Richard Guenther <rguenther@suse.de> | 2009-12-01 10:02:24 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2009-12-01 10:02:24 +0000 |
commit | c7ba0cfb619b379a84535227d60d86f64fe086d7 (patch) | |
tree | 9339d860b9e899a5c55952fd737f529f264d99eb /gcc/final.c | |
parent | b7d5e87b0780ff54f2ade45aabaea5cd7148ec86 (diff) | |
download | gcc-c7ba0cfb619b379a84535227d60d86f64fe086d7.zip gcc-c7ba0cfb619b379a84535227d60d86f64fe086d7.tar.gz gcc-c7ba0cfb619b379a84535227d60d86f64fe086d7.tar.bz2 |
final.c (rest_of_clean_state): If -fcompare-debug is given dump final insns without UIDs.
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.
From-SVN: r154869
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 5d037f5..0d19562 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)) |