Commit ecb44bc9 by Trevor Saunders Committed by Trevor Saunders

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
parent 84f16edb
2015-05-08 Trevor Saunders <tbsaunde+gcc@tbsaunde.org> 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 * except.c (make_reg_eh_region_note): Change argument to
rtx_insn *. rtx_insn *.
(make_reg_eh_region_note_nothrow_nononlocal): Likewise. (make_reg_eh_region_note_nothrow_nononlocal): Likewise.
......
...@@ -225,7 +225,7 @@ static int *uid_to_ruid; ...@@ -225,7 +225,7 @@ static int *uid_to_ruid;
/* Highest valid index in `uid_to_ruid'. */ /* Highest valid index in `uid_to_ruid'. */
static int max_uid; 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 resource_conflicts_p (struct resources *, struct resources *);
static int insn_references_resource_p (rtx, struct resources *, bool); static int insn_references_resource_p (rtx, struct resources *, bool);
static int insn_sets_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) ...@@ -302,7 +302,7 @@ simplejump_or_return_p (rtx insn)
In all cases, jumps terminate the search. */ In all cases, jumps terminate the search. */
static int static int
stop_search_p (rtx insn, int labels_p) stop_search_p (rtx_insn *insn, int labels_p)
{ {
if (insn == 0) if (insn == 0)
return 1; return 1;
......
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