diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2014-03-11 21:35:02 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2014-03-11 21:35:02 +0000 |
commit | f12572682e4b112bb61fe05ec233cb63bb261604 (patch) | |
tree | 522fb7178bd1e83bdba8ab6c8d0264247db8c3a3 /gcc/dse.c | |
parent | 5af1876c657286423edbf631be14a36ce2dcaeaa (diff) | |
download | gcc-f12572682e4b112bb61fe05ec233cb63bb261604.zip gcc-f12572682e4b112bb61fe05ec233cb63bb261604.tar.gz gcc-f12572682e4b112bb61fe05ec233cb63bb261604.tar.bz2 |
builtins.c (expand_builtin_setjmp_receiver): Use and clobber hard_frame_pointer_rtx.
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.
From-SVN: r208498
Diffstat (limited to 'gcc/dse.c')
-rw-r--r-- | gcc/dse.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -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); |