summaryrefslogtreecommitdiff
path: root/gcc/jump.c
diff options
context:
space:
mode:
authordmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4>2014-09-04 20:34:36 +0000
committerdmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4>2014-09-04 20:34:36 +0000
commit1f9a257f0f346c90b2e3c9e2420a1a7f0a1ebf61 (patch)
treed275aea488cf2f4ef664a1dad8026f81f4f395f3 /gcc/jump.c
parent54ea2042992e8bb54fe82230d32602f41036f64f (diff)
downloadgcc-1f9a257f0f346c90b2e3c9e2420a1a7f0a1ebf61.tar.gz
eh_returnjump_p takes an rtx_insn
2014-09-04 David Malcolm <dmalcolm@redhat.com> gcc/ * jump.c (eh_returnjump_p): Strengthen param "insn" from rtx to rtx_insn *. * rtl.h (eh_returnjump_p): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@214919 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/jump.c')
-rw-r--r--gcc/jump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/jump.c b/gcc/jump.c
index 3cb7ef29eae..12edd927e54 100644
--- a/gcc/jump.c
+++ b/gcc/jump.c
@@ -954,7 +954,7 @@ returnjump_p (rtx insn)
/* Return true if INSN is a (possibly conditional) return insn. */
int
-eh_returnjump_p (rtx insn)
+eh_returnjump_p (rtx_insn *insn)
{
if (JUMP_P (insn))
{