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

Shuffle operands differently.

From-SVN: r4500
This commit is contained in:
Richard Stallman 1993-05-18 22:09:26 +00:00
parent ba301c5ca2
commit 70c2344d0a
1 changed files with 3 additions and 2 deletions

View File

@ -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);
}")