OSDN Git Service

* pa/pa.c (print_operand): Use the right comparison operator
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 14 Aug 1996 17:40:57 +0000 (17:40 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 14 Aug 1996 17:40:57 +0000 (17:40 +0000)
        for reversed EQ and NE comparisons.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12639 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/config/pa/pa.c

index cc0dd71..861efb3 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: