Commit 7cda284a by Jeff Law

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
parent e38fd454
...@@ -3236,9 +3236,9 @@ print_operand (file, x, code) ...@@ -3236,9 +3236,9 @@ print_operand (file, x, code)
switch (GET_CODE (x)) switch (GET_CODE (x))
{ {
case EQ: case EQ:
fputs ("?=", file); break; fputs ("=", file); break;
case NE: case NE:
fputs ("!?=", file); break; fputs ("!=", file); break;
case GT: case GT:
fputs ("!<=", file); break; fputs ("!<=", file); break;
case GE: case GE:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment