Commit 39fd5abe by Richard Kenner

(addsi_lshrsi_31, ashldi_const, ashrdi_const, lshrdi_const): Replace

`mov' with `move'.

From-SVN: r9818
parent fd4cb6b0
......@@ -2102,7 +2102,7 @@
else if (GET_CODE (XEXP (operands[0], 0)) == PRE_DEC)
operands[2] = gen_rtx (MEM, SImode, XEXP (XEXP (operands[0], 0), 0));
}
output_asm_insn (\"mov%.l %1,%0\", operands);
output_asm_insn (\"move%.l %1,%0\", operands);
#ifdef MOTOROLA
output_asm_insn (\"jbpl %l3\", operands);
#else
......@@ -4104,9 +4104,9 @@
if (INTVAL (operands[2]) == 1)
return \"add%.l %1,%1\;addx%.l %0,%0\";
else if (INTVAL (operands[2]) == 8)
return \"rol%.l %#8,%1\;rol%.l %#8,%0\;mov%.b %1,%0\;clr%.b %1\";
return \"rol%.l %#8,%1\;rol%.l %#8,%0\;move%.b %1,%0\;clr%.b %1\";
else if (INTVAL (operands[2]) == 16)
return \"swap %1\;swap %0\;mov%.w %1,%0\;clr%.w %1\";
return \"swap %1\;swap %0\;move%.w %1,%0\;clr%.w %1\";
else if (INTVAL (operands[2]) == 2)
return \"add%.l %1,%1\;addx%.l %0,%0\;add%.l %1,%1\;addx%.l %0,%0\";
else/* if (INTVAL (operands[2]) == 3)*/
......@@ -4290,9 +4290,9 @@
if (INTVAL (operands[2]) == 1)
return \"asr%.l %#1,%0\;roxr%.l %#1,%1\";
else if (INTVAL (operands[2]) == 8)
return \"mov%.b %0,%1\;asr%.l %#8,%0\;ror%.l %#8,%1\";
return \"move%.b %0,%1\;asr%.l %#8,%0\;ror%.l %#8,%1\";
else if (INTVAL (operands[2]) == 16)
return \"mov%.w %0,%1\;clr%.w %0\;swap %1\;ext%.l %0\";
return \"move%.w %0,%1\;clr%.w %0\;swap %1\;ext%.l %0\";
else if (INTVAL (operands[2]) == 2)
return \"asr%.l %#1,%0\;roxr%.l %#1,%1\;asr%.l %#1,%0\;roxr%.l %#1,%1\";
else/* if (INTVAL (operands[2]) == 3)*/
......@@ -4431,9 +4431,9 @@
if (INTVAL (operands[2]) == 1)
return \"lsr%.l %#1,%0\;roxr%.l %#1,%1\";
else if (INTVAL (operands[2]) == 8)
return \"mov%.b %0,%1\;lsr%.l %#8,%0\;ror%.l %#8,%1\";
return \"move%.b %0,%1\;lsr%.l %#8,%0\;ror%.l %#8,%1\";
else if (INTVAL (operands[2]) == 16)
return \"mov%.w %0,%1\;clr%.w %0\;swap %1\;swap %0\";
return \"move%.w %0,%1\;clr%.w %0\;swap %1\;swap %0\";
else if (INTVAL (operands[2]) == 2)
return \"lsr%.l %#1,%0\;roxr%.l %#1,%1\;lsr%.l %#1,%0\;roxr%.l %#1,%1\";
else /*if (INTVAL (operands[2]) == 3)*/
......
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