diff options
author | David Malcolm <dmalcolm@redhat.com> | 2014-08-26 19:38:42 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2014-08-26 19:38:42 +0000 |
commit | 61aa0978e2caf0417a78289eed85010b0c11be94 (patch) | |
tree | b0e02ec21c8175f7fd91f102947087d8b9e81c7b /gcc/cfgcleanup.c | |
parent | 51c7dd986881a7b414f3f456be0fe1d4ac6b3dd3 (diff) | |
download | gcc-61aa0978e2caf0417a78289eed85010b0c11be94.zip gcc-61aa0978e2caf0417a78289eed85010b0c11be94.tar.gz gcc-61aa0978e2caf0417a78289eed85010b0c11be94.tar.bz2 |
Various condition-handling calls
gcc/
2014-08-26 David Malcolm <dmalcolm@redhat.com>
* rtl.h (canonicalize_condition): Strengthen param 1 from rtx to
rtx_insn * and param 4 from rtx * to rtx_insn **.
(get_condition): Strengthen param 1 from rtx to rtx_insn * and
param 2 from rtx * to rtx_insn **.
* df.h (can_move_insns_across): Strengthen params 1-4 from rtx to
rtx_insn * and final param from rtx * to rtx_insn **.
* cfgcleanup.c (try_head_merge_bb): Strengthen local "move_before"
from rtx to rtx_insn *.
(try_head_merge_bb): Likewise for both locals named "move_upto".
* df-problems.c (can_move_insns_across): Likewise for params
"from", "to", "across_from", "across_to" and locals "insn",
"next", "max_to". Strengthen param "pmove_upto" from rtx * to
rtx_insn **.
* ifcvt.c (struct noce_if_info): Strengthen field "cond_earliest"
from rtx to rtx_insn *.
(noce_get_alt_condition): Strengthen param "earliest" from rtx *
to rtx_insn **. Strengthen local "insn" from rtx to rtx_insn *.
(noce_try_minmax): Strengthen locals "earliest", "seq" from rtx to
rtx_insn *.
(noce_try_abs): Likewise.
(noce_get_condition): Likewise for param "jump". Strengthen param
"earliest" from rtx * to rtx_insn **.
(noce_find_if_block): Strengthen local "cond_earliest" from rtx to
rtx_insn *.
(find_cond_trap): Likewise.
(dead_or_predicable): Likewise for local "earliest".
* loop-iv.c (check_simple_exit): Likewise for local "at". Add
checked cast.
* rtlanal.c (canonicalize_condition): Likewise for param "insn"
and local "prev". Strengthen param "earliest" from rtx * to
rtx_insn **.
(get_condition): Strengthen param "jump" from rtx to rtx_insn *
Strengthen param "earliest" from rtx * to rtx_insn **.
From-SVN: r214542
Diffstat (limited to 'gcc/cfgcleanup.c')
-rw-r--r-- | gcc/cfgcleanup.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c index 96ab4aa..2264b4b 100644 --- a/gcc/cfgcleanup.c +++ b/gcc/cfgcleanup.c @@ -2291,7 +2291,8 @@ try_head_merge_bb (basic_block bb) bool changed, moveall; unsigned ix; rtx_insn *e0_last_head; - rtx cond, move_before; + rtx cond; + rtx_insn *move_before; unsigned nedges = EDGE_COUNT (bb->succs); rtx_insn *jump = BB_END (bb); regset live, live_union; @@ -2455,7 +2456,7 @@ try_head_merge_bb (basic_block bb) with the final move. */ if (final_dest_bb != NULL) { - rtx move_upto; + rtx_insn *move_upto; moveall = can_move_insns_across (currptr[0], e0_last_head, move_before, jump, e0->dest, live_union, @@ -2490,7 +2491,7 @@ try_head_merge_bb (basic_block bb) do { - rtx move_upto; + rtx_insn *move_upto; moveall = can_move_insns_across (currptr[0], e0_last_head, move_before, jump, e0->dest, live_union, NULL, &move_upto); |