diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2012-06-22 01:30:00 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2012-06-22 01:30:00 +0000 |
commit | 1ca63357cb07ce7c61ad275d8f870187d8dd8950 (patch) | |
tree | fbacc3c93f3473deb29e7d43ab8eaf363f3c0221 /gcc | |
parent | ce8fe26dc09eaeacbbcb867c3b8544f765134da0 (diff) | |
download | gcc-1ca63357cb07ce7c61ad275d8f870187d8dd8950.zip gcc-1ca63357cb07ce7c61ad275d8f870187d8dd8950.tar.gz gcc-1ca63357cb07ce7c61ad275d8f870187d8dd8950.tar.bz2 |
* ddg.c (build_intra_loop_deps): Discard deps of nondebug on debug.
From-SVN: r188867
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/ddg.c | 10 |
2 files changed, 13 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3b86f2b..106872f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2012-06-21 Alexandre Oliva <aoliva@redhat.com> + * ddg.c (build_intra_loop_deps): Discard deps of nondebug on debug. + +2012-06-21 Alexandre Oliva <aoliva@redhat.com> + PR debug/53682 * cselib.c (promote_debug_loc): Don't crash on NULL argument. @@ -531,7 +531,15 @@ build_intra_loop_deps (ddg_ptr g) FOR_EACH_DEP (dest_node->insn, SD_LIST_BACK, sd_it, dep) { - ddg_node_ptr src_node = get_node_of_insn (g, DEP_PRO (dep)); + rtx src_insn = DEP_PRO (dep); + ddg_node_ptr src_node; + + /* Don't add dependencies on debug insns to non-debug insns + to avoid codegen differences between -g and -g0. */ + if (DEBUG_INSN_P (src_insn) && !DEBUG_INSN_P (dest_node->insn)) + continue; + + src_node = get_node_of_insn (g, src_insn); if (!src_node) continue; |