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
This commit is contained in:
parent
b67b29f62f
commit
8e3177d9a6
@ -1,3 +1,10 @@
|
||||
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);
|
||||
|
Loading…
Reference in New Issue
Block a user