Commit 63bd6324 by Trevor Saunders Committed by Trevor Saunders

computed_jump_p takes a rtx_insn *

gcc/ChangeLog:

2015-05-08  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>

	* rtlanal.c (computed_jump_p): Cange argument type to rtx_insn *.
	* rtl.h: Adjust.

From-SVN: r222939
parent 0d53e74e
2015-05-08 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* rtlanal.c (computed_jump_p): Cange argument type to rtx_insn *.
* rtl.h: Adjust.
2015-05-08 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* rtlanal.c (in_insn_list_p): Renamed from in_expr_list_p.
* cfgrtl.c (can_delete_label_p): Adjust.
* rtl.h: likewise.
......
......@@ -2890,7 +2890,7 @@ extern void replace_label (rtx *, rtx, rtx, bool);
extern void replace_label_in_insn (rtx_insn *, rtx, rtx, bool);
extern bool rtx_referenced_p (const_rtx, const_rtx);
extern bool tablejump_p (const rtx_insn *, rtx *, rtx_jump_table_data **);
extern int computed_jump_p (const_rtx);
extern int computed_jump_p (const rtx_insn *);
extern bool tls_referenced_p (const_rtx);
/* Overload for refers_to_regno_p for checking a single register. */
......
......@@ -2990,7 +2990,7 @@ computed_jump_p_1 (const_rtx x)
we can recognize them by a (use (label_ref)). */
int
computed_jump_p (const_rtx insn)
computed_jump_p (const rtx_insn *insn)
{
int i;
if (JUMP_P (insn))
......
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