make stop_search_p take a rtx_insn *

gcc/ChangeLog:

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

	* reorg.c (stop_search_p): Change argument to rtx_insn *.

From-SVN: r222937
This commit is contained in:
Trevor Saunders 2015-05-09 04:15:46 +00:00 committed by Trevor Saunders
parent 84f16edb6a
commit ecb44bc9a2
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2015-05-08 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* reorg.c (stop_search_p): Change argument to rtx_insn *.
2015-05-08 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* except.c (make_reg_eh_region_note): Change argument to

View File

@ -225,7 +225,7 @@ static int *uid_to_ruid;
/* Highest valid index in `uid_to_ruid'. */
static int max_uid;
static int stop_search_p (rtx, int);
static int stop_search_p (rtx_insn *, int);
static int resource_conflicts_p (struct resources *, struct resources *);
static int insn_references_resource_p (rtx, struct resources *, bool);
static int insn_sets_resource_p (rtx, struct resources *, bool);
@ -302,7 +302,7 @@ simplejump_or_return_p (rtx insn)
In all cases, jumps terminate the search. */
static int
stop_search_p (rtx insn, int labels_p)
stop_search_p (rtx_insn *insn, int labels_p)
{
if (insn == 0)
return 1;