* ifcvt.c (noce_emit_move_insn): Remove inmode.

From-SVN: r96166
This commit is contained in:
Kazu Hirata 2005-03-09 07:12:05 +00:00 committed by Kazu Hirata
parent 5758c0f1f7
commit 40e4813897
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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);
}