Commit 40e48138 by Kazu Hirata Committed by Kazu Hirata

* ifcvt.c (noce_emit_move_insn): Remove inmode.

From-SVN: r96166
parent 5758c0f1
......@@ -8,6 +8,8 @@
* fold-const.c (int_const_binop): Remove no_overflow.
* ifcvt.c (noce_emit_move_insn): Remove inmode.
2005-03-08 Jeff Law <law@redhat.com>
* tree-cfg.c (cleanup_control_flow): If removal of a computed
......
......@@ -683,7 +683,7 @@ noce_emit_store_flag (struct noce_if_info *if_info, rtx x, int reversep,
static void
noce_emit_move_insn (rtx x, rtx y)
{
enum machine_mode outmode, inmode;
enum machine_mode outmode;
rtx outer, inner;
int bitpos;
......@@ -696,7 +696,6 @@ noce_emit_move_insn (rtx x, rtx y)
outer = XEXP (x, 0);
inner = XEXP (outer, 0);
outmode = GET_MODE (outer);
inmode = GET_MODE (inner);
bitpos = SUBREG_BYTE (outer) * BITS_PER_UNIT;
store_bit_field (inner, GET_MODE_BITSIZE (outmode), bitpos, outmode, y);
}
......
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