diff options
author | David Malcolm <dmalcolm@redhat.com> | 2014-09-12 14:04:35 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2014-09-12 14:04:35 +0000 |
commit | a5d567ec327cae776e9b9722f521f9f55fa45e0b (patch) | |
tree | 78ad1dd1d3c8eba4f83335c896ef28b99808581b /gcc/rtl.h | |
parent | bc5022d0114c306684f4f21c91716fb91c83fdc6 (diff) | |
download | gcc-a5d567ec327cae776e9b9722f521f9f55fa45e0b.zip gcc-a5d567ec327cae776e9b9722f521f9f55fa45e0b.tar.gz gcc-a5d567ec327cae776e9b9722f521f9f55fa45e0b.tar.bz2 |
params 2 and 3 of reg_set_between_p
gcc/ChangeLog:
* config/alpha/alpha.c (alpha_ra_ever_killed): Replace NULL_RTX
with NULL when dealing with an insn.
* config/sh/sh.c (sh_reorg): Strengthen local "last_float_move"
from rtx to rtx_insn *.
* rtl.h (reg_set_between_p): Strengthen params 2 and 3 from
const_rtx to const rtx_insn *.
* rtlanal.c (reg_set_between_p): Likewise, removing a checked cast.
From-SVN: r215222
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2759,7 +2759,7 @@ extern int reg_mentioned_p (const_rtx, const_rtx); extern int count_occurrences (const_rtx, const_rtx, int); extern int reg_referenced_p (const_rtx, const_rtx); extern int reg_used_between_p (const_rtx, const rtx_insn *, const rtx_insn *); -extern int reg_set_between_p (const_rtx, const_rtx, const_rtx); +extern int reg_set_between_p (const_rtx, const rtx_insn *, const rtx_insn *); extern int commutative_operand_precedence (rtx); extern bool swap_commutative_operands_p (rtx, rtx); extern int modified_between_p (const_rtx, const rtx_insn *, const rtx_insn *); |