diff options
author | dmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-08-26 19:31:29 +0000 |
---|---|---|
committer | dmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-08-26 19:31:29 +0000 |
commit | 57c26b3af6d6dc3a5a3a5e9e1d25f65d3dd840e4 (patch) | |
tree | 9eaf84138b17fd53a0228bd51cde730973bdc703 /gcc/modulo-sched.c | |
parent | 447ab0fcfad9d476a7793145e187a26ce35b68ad (diff) | |
download | gcc-57c26b3af6d6dc3a5a3a5e9e1d25f65d3dd840e4.tar.gz |
Strengthen various insn emission functions
gcc/
2014-08-26 David Malcolm <dmalcolm@redhat.com>
* rtl.h (push_to_sequence): Strengthen param from rtx to
rtx_insn *.
(push_to_sequence2): Likewise for both params.
(delete_insns_since): Likewise for param.
(reorder_insns_nobb): Likewise for all three params.
(set_new_first_and_last_insn): Likewise for both params.
* emit-rtl.h (set_first_insn): Strengthen param "insn" from rtx to
rtx_insn *. Remove now-redundant cast.
(set_last_insn): Likewise.
* builtins.c (expand_builtin_return): Strengthen local
"call_fusage" from rtx to rtx_insn *.
* cfgrtl.c (create_basic_block_structure): Likewise for local
"after".
* emit-rtl.c (set_new_first_and_last_insn): Likewise for params
"first", "last" and local "insn".
(delete_insns_since): Likewise for param "from".
(reorder_insns_nobb): Likewise for params "from", "to", "after"
and local "x".
(push_to_sequence): Likewise for param "first" and local "last".
(push_to_sequence2): Likewise for params "first" and "last".
* lra.c (emit_add3_insn): Likewise for local "last".
(lra_emit_add): Likewise.
* lra-constraints.c (base_to_reg): Likewise for locals "insn",
"last_insn".
(process_address_1): Likewise for locals "insn", last".
* modulo-sched.c (ps_first_note): Likewise for return type.
* optabs.c (expand_binop_directly): Likewise for param "last".
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@214539 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/modulo-sched.c')
-rw-r--r-- | gcc/modulo-sched.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/modulo-sched.c b/gcc/modulo-sched.c index fc211ffd2d1..3b62eafe157 100644 --- a/gcc/modulo-sched.c +++ b/gcc/modulo-sched.c @@ -319,7 +319,7 @@ ps_rtl_insn (partial_schedule_ptr ps, int id) in the loop that was associated with ps_rtl_insn (PS, ID). If the instruction had some notes before it, this is the first of those notes. */ -static rtx +static rtx_insn * ps_first_note (partial_schedule_ptr ps, int id) { gcc_assert (id < ps->g->num_nodes); |