(output_387_binary_op): Use AS2C instead of AS2 with null first arg.
authorRichard Kenner <kenner@gcc.gnu.org>
Fri, 30 Sep 1994 21:32:04 +0000 (17:32 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Fri, 30 Sep 1994 21:32:04 +0000 (17:32 -0400)
From-SVN: r8186

gcc/config/i386/i386.c

index 5a9e8824777b2e7c342ae6678efd821d7f0b71c5..3d5db62bc2950a4e1da8ff7a2d497f9aaeeb6af3 100644 (file)
@@ -2540,9 +2540,9 @@ output_387_binary_op (insn, operands)
        return strcat (buf, AS2 (p,%2,%0));
 
       if (STACK_TOP_P (operands[0]))
-       return strcat (buf, AS2 (,%y2,%0));
+       return strcat (buf, AS2C (%y2,%0));
       else
-       return strcat (buf, AS2 (,%2,%0));
+       return strcat (buf, AS2C (%2,%0));
 
     case MINUS:
     case DIV:
@@ -2575,12 +2575,12 @@ output_387_binary_op (insn, operands)
       if (STACK_TOP_P (operands[0]))
        {
          if (STACK_TOP_P (operands[1]))
-           return strcat (buf, AS2 (,%y2,%0));
+           return strcat (buf, AS2C (%y2,%0));
          else
            return strcat (buf, AS2 (r,%y1,%0));
        }
       else if (STACK_TOP_P (operands[1]))
-       return strcat (buf, AS2 (,%1,%0));
+       return strcat (buf, AS2C (%1,%0));
       else
        return strcat (buf, AS2 (r,%2,%0));