summaryrefslogtreecommitdiff
path: root/gcc/dse.c
diff options
context:
space:
mode:
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>2014-03-11 21:35:02 +0000
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>2014-03-11 21:35:02 +0000
commit62dcb5c89136585c8600e09979def634a9e776bd (patch)
tree522fb7178bd1e83bdba8ab6c8d0264247db8c3a3 /gcc/dse.c
parentc9b99c30900d0bb11f7b4f86cb0fab35d41059a8 (diff)
downloadgcc-62dcb5c89136585c8600e09979def634a9e776bd.tar.gz
gcc/
* builtins.c (expand_builtin_setjmp_receiver): Use and clobber hard_frame_pointer_rtx. * cse.c (cse_insn): Remove volatile check. * cselib.c (cselib_process_insn): Likewise. * dse.c (scan_insn): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@208498 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dse.c')
-rw-r--r--gcc/dse.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc/dse.c b/gcc/dse.c
index f5c9c7376ea..09dc5df6e93 100644
--- a/gcc/dse.c
+++ b/gcc/dse.c
@@ -2470,16 +2470,6 @@ scan_insn (bb_info_t bb_info, rtx insn)
return;
}
- /* Cselib clears the table for this case, so we have to essentially
- do the same. */
- if (NONJUMP_INSN_P (insn)
- && volatile_insn_p (PATTERN (insn)))
- {
- add_wild_read (bb_info);
- insn_info->cannot_delete = true;
- return;
- }
-
/* Look at all of the uses in the insn. */
note_uses (&PATTERN (insn), check_mem_read_use, bb_info);