Commit 70c2344d by Richard Stallman

(add/asl recognizer): Use space, not #, after asl.

Shuffle operands differently.

From-SVN: r4500
parent ba301c5c
......@@ -1289,8 +1289,9 @@
{
int shift = int_log2 (INTVAL (operands[4]));
operands[4] = GEN_INT (shift);
arm_output_asm_insn (\"add\\t%0, %2, %3, asl#%4\", operands);
operands[2] = operands[0];
arm_output_asm_insn (\"add\\t%0, %2, %3, asl %4\", operands);
operands[2] = operands[1];
operands[1] = operands[0];
return output_add_immediate (operands);
}")
......
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