aboutsummaryrefslogtreecommitdiff
path: root/gcc/shrink-wrap.h
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/shrink-wrap.h
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/shrink-wrap.h')
-rw-r--r--gcc/shrink-wrap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/shrink-wrap.h b/gcc/shrink-wrap.h
index 647c076..29bdcfd 100644
--- a/gcc/shrink-wrap.h
+++ b/gcc/shrink-wrap.h
@@ -27,7 +27,7 @@ along with GCC; see the file COPYING3. If not see
#ifdef HAVE_simple_return
/* In function.c. */
extern void emit_return_into_block (bool simple_p, basic_block bb);
-extern bool active_insn_between (rtx head, rtx tail);
+extern bool active_insn_between (rtx_insn *head, rtx_insn *tail);
extern vec<edge> convert_jumps_to_returns (basic_block last_bb, bool simple_p,
vec<edge> unconverted);
extern basic_block emit_return_for_exit (edge exit_fallthru_edge,