aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.c
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2014-08-29 00:14:43 +0000
committerDavid Malcolm <dmalcolm@gcc.gnu.org>2014-08-29 00:14:43 +0000
commitffd80b43481c1b55b40dda064cf04293c3765632 (patch)
tree0b0d18974b4b5b3003eccf7a3515026677ac5d93 /gcc/function.c
parentcbba639cdd2a5fe2b18cc0a0c3efed94d0f5e520 (diff)
downloadgcc-ffd80b43481c1b55b40dda064cf04293c3765632.zip
gcc-ffd80b43481c1b55b40dda064cf04293c3765632.tar.gz
gcc-ffd80b43481c1b55b40dda064cf04293c3765632.tar.bz2
Strengthen params to active_insn_between
gcc/ 2014-08-28 David Malcolm <dmalcolm@redhat.com> * shrink-wrap.h (active_insn_between): Strengthen both params from rtx to rtx_insn *. * function.c (active_insn_between): Likewise. From-SVN: r214704
Diffstat (limited to 'gcc/function.c')
-rw-r--r--gcc/function.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/function.c b/gcc/function.c
index 54fb9b4..dc9c06b 100644
--- a/gcc/function.c
+++ b/gcc/function.c
@@ -5426,9 +5426,8 @@ set_return_jump_label (rtx returnjump)
#if defined (HAVE_return) || defined (HAVE_simple_return)
/* Return true if there are any active insns between HEAD and TAIL. */
bool
-active_insn_between (rtx head, rtx uncast_tail)
+active_insn_between (rtx_insn *head, rtx_insn *tail)
{
- rtx_insn *tail = safe_as_a <rtx_insn *> (uncast_tail);
while (tail)
{
if (active_insn_p (tail))