Commit 09b58bbd by Richard Kenner

(movqi): Disable special-case of stack push if operand one is an

address register.

From-SVN: r6736
parent 281bb5e4
......@@ -928,7 +928,8 @@
of several bytes a byte at a time. */
if (GET_CODE (operands[0]) == MEM
&& GET_CODE (XEXP (operands[0], 0)) == PRE_DEC
&& XEXP (XEXP (operands[0], 0), 0) == stack_pointer_rtx)
&& XEXP (XEXP (operands[0], 0), 0) == stack_pointer_rtx
&& ! ADDRESS_REG_P (operands[1]))
{
xoperands[1] = operands[1];
xoperands[2]
......
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