pa.c (print_operand): Use the right comparison operator for reversed EQ and NE comparisons.

* pa/pa.c (print_operand): Use the right comparison operator
        for reversed EQ and NE comparisons.

From-SVN: r12639
This commit is contained in:
Jeff Law 1996-08-14 11:40:57 -06:00
parent e38fd454ac
commit 7cda284aaf
1 changed files with 2 additions and 2 deletions

View 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: