Fix dumb thinkos in last change.

From-SVN: r24334
This commit is contained in:
Jeff Law 1998-12-15 13:53:34 -07:00
parent 35704c4661
commit ebc5a9c1d3
2 changed files with 16 additions and 16 deletions

View File

@ -1658,9 +1658,9 @@
rtx target, result, insns;
start_sequence ();
target = operand_subword (operands[0], 0, 1, SFmode);
target = operand_subword (operands[0], 1, 1, SFmode);
result = expand_binop (HImode, and_optab,
operand_subword_force (operands[1], 0, SFmode),
operand_subword_force (operands[1], 1, SFmode),
GEN_INT(0x7fff), target, 0, OPTAB_WIDEN);
if (result == 0)
@ -1669,8 +1669,8 @@
if (result != target)
emit_move_insn (result, target);
emit_move_insn (operand_subword (operands[0], 1, 1, SFmode),
operand_subword_force (operands[1], 1, SFmode));
emit_move_insn (operand_subword (operands[0], 0, 1, SFmode),
operand_subword_force (operands[1], 0, SFmode));
insns = get_insns ();
end_sequence ();
@ -1688,9 +1688,9 @@
rtx target, result, insns;
start_sequence ();
target = operand_subword (operands[0], 0, 1, SFmode);
target = operand_subword (operands[0], 1, 1, SFmode);
result = expand_binop (HImode, xor_optab,
operand_subword_force (operands[1], 0, SFmode),
operand_subword_force (operands[1], 1, SFmode),
GEN_INT(0x8000), target, 0, OPTAB_WIDEN);
if (result == 0)
@ -1699,8 +1699,8 @@
if (result != target)
emit_move_insn (result, target);
emit_move_insn (operand_subword (operands[0], 1, 1, SFmode),
operand_subword_force (operands[1], 1, SFmode));
emit_move_insn (operand_subword (operands[0], 0, 1, SFmode),
operand_subword_force (operands[1], 0, SFmode));
insns = get_insns ();
end_sequence ();

View File

@ -1358,9 +1358,9 @@
rtx target, result, insns;
start_sequence ();
target = operand_subword (operands[0], 0, 1, DFmode);
target = operand_subword (operands[0], 1, 1, DFmode);
result = expand_binop (SImode, and_optab,
operand_subword_force (operands[1], 0, DFmode),
operand_subword_force (operands[1], 1, DFmode),
GEN_INT(0x7fffffff), target, 0, OPTAB_WIDEN);
if (result == 0)
@ -1369,8 +1369,8 @@
if (result != target)
emit_move_insn (result, target);
emit_move_insn (operand_subword (operands[0], 1, 1, DFmode),
operand_subword_force (operands[1], 1, DFmode));
emit_move_insn (operand_subword (operands[0], 0, 1, DFmode),
operand_subword_force (operands[1], 0, DFmode));
insns = get_insns ();
end_sequence ();
@ -1413,9 +1413,9 @@
rtx target, result, insns;
start_sequence ();
target = operand_subword (operands[0], 0, 1, DFmode);
target = operand_subword (operands[0], 1, 1, DFmode);
result = expand_binop (SImode, xor_optab,
operand_subword_force (operands[1], 0, DFmode),
operand_subword_force (operands[1], 1, DFmode),
GEN_INT(0x80000000), target, 0, OPTAB_WIDEN);
if (result == 0)
@ -1424,8 +1424,8 @@
if (result != target)
emit_move_insn (result, target);
emit_move_insn (operand_subword (operands[0], 1, 1, DFmode),
operand_subword_force (operands[1], 1, DFmode));
emit_move_insn (operand_subword (operands[0], 0, 1, DFmode),
operand_subword_force (operands[1], 0, DFmode));
insns = get_insns ();
end_sequence ();