pa.c (print_operand): Use the right comparison operator for reversed EQ and NE compar...
authorJeff Law <law@gcc.gnu.org>
Wed, 14 Aug 1996 17:40:57 +0000 (11:40 -0600)
committerJeff Law <law@gcc.gnu.org>
Wed, 14 Aug 1996 17:40:57 +0000 (11:40 -0600)
        * pa/pa.c (print_operand): Use the right comparison operator
        for reversed EQ and NE comparisons.

From-SVN: r12639

gcc/config/pa/pa.c

index cc0dd71a67984572a4faa219d22b0f503d20d085..861efb32580d3ae7f4a2687685058f3665b6afd8 100644 (file)
@@ -3236,9 +3236,9 @@ print_operand (file, x, code)
       switch (GET_CODE (x))
        {
        case EQ:
-         fputs ("?=", file);  break;
+         fputs ("=", file);  break;
        case NE:
-         fputs ("!?=", file);  break;
+         fputs ("!=", file);  break;
        case GT:
          fputs ("!<=", file);  break;
        case GE: