Commit 8e3177d9 by David Malcolm Committed by David Malcolm

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.

From-SVN: r214919
parent b67b29f6
2014-09-04 David Malcolm <dmalcolm@redhat.com>
* jump.c (eh_returnjump_p): Strengthen param "insn" from rtx to
rtx_insn *.
* rtl.h (eh_returnjump_p): Likewise.
2014-09-04 Aldy Hernandez <aldyh@redhat.com>
* Makefile.in (TAGS): Handle constructs in timevar.def.
......@@ -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))
{
......
......@@ -3235,7 +3235,7 @@ extern rtx pc_set (const_rtx);
extern rtx condjump_label (const_rtx);
extern int simplejump_p (const_rtx);
extern int returnjump_p (rtx);
extern int eh_returnjump_p (rtx);
extern int eh_returnjump_p (rtx_insn *);
extern int onlyjump_p (const_rtx);
extern int only_sets_cc0_p (const_rtx);
extern int sets_cc0_p (const_rtx);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment