Commit 4637cb92 by Eric Botcazou Committed by Eric Botcazou

alpha.md (movti): Use operand_subword for the split.

	* config/alpha/alpha.md (movti): Use operand_subword for the split.

From-SVN: r128690
parent 8eb75619
2007-09-23 Eric Botcazou <ebotcazou@adacore.com>
* config/alpha/alpha.md (movti): Use operand_subword for the split.
2007-09-23 Ayal Zaks <zaks@il.ibm.com>
Revital Eres <eres@il.ibm.com>
......@@ -5784,8 +5784,8 @@
else
target = operands[0];
emit_insn (gen_movdi (gen_rtx_SUBREG (DImode, target, 0), out[0]));
emit_insn (gen_movdi (gen_rtx_SUBREG (DImode, target, 8), out[1]));
emit_insn (gen_movdi (operand_subword (target, 0, 0, TImode), out[0]));
emit_insn (gen_movdi (operand_subword (target, 1, 0, TImode), out[1]));
if (target != operands[0])
emit_insn (gen_rtx_SET (VOIDmode, operands[0], target));
......
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