diff options
author | David Malcolm <dmalcolm@redhat.com> | 2014-08-26 19:31:29 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2014-08-26 19:31:29 +0000 |
commit | fee3e72cdf4f2971f534dbea8ba8b1f49a1230ff (patch) | |
tree | 9eaf84138b17fd53a0228bd51cde730973bdc703 /gcc/lra-constraints.c | |
parent | db76cf1e63450264df9a4b0e7e9ccdc85ce70afa (diff) | |
download | gcc-fee3e72cdf4f2971f534dbea8ba8b1f49a1230ff.zip gcc-fee3e72cdf4f2971f534dbea8ba8b1f49a1230ff.tar.gz gcc-fee3e72cdf4f2971f534dbea8ba8b1f49a1230ff.tar.bz2 |
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".
From-SVN: r214539
Diffstat (limited to 'gcc/lra-constraints.c')
-rw-r--r-- | gcc/lra-constraints.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/lra-constraints.c b/gcc/lra-constraints.c index 6e6f04b..9152ffe 100644 --- a/gcc/lra-constraints.c +++ b/gcc/lra-constraints.c @@ -2567,8 +2567,8 @@ base_to_reg (struct address_info *ad) int code = -1; rtx new_inner = NULL_RTX; rtx new_reg = NULL_RTX; - rtx insn; - rtx last_insn = get_last_insn(); + rtx_insn *insn; + rtx_insn *last_insn = get_last_insn(); lra_assert (ad->base == ad->base_term && ad->disp == ad->disp_term); cl = base_reg_class (ad->mode, ad->as, ad->base_outer_code, @@ -2834,8 +2834,8 @@ process_address_1 (int nop, rtx_insn **before, rtx_insn **after) new_reg = lra_create_new_reg (Pmode, NULL_RTX, cl, "addr"); #ifdef HAVE_lo_sum { - rtx insn; - rtx last = get_last_insn (); + rtx_insn *insn; + rtx_insn *last = get_last_insn (); /* addr => lo_sum (new_base, addr), case (2) above. */ insn = emit_insn (gen_rtx_SET |