Commit c0624dec by Jeff Law

pa.c (print_operand, case 'Y'): Fix comparisons to handle NaNs properly in all cases.

        * pa/pa.c (print_operand, case 'Y'): Fix comparisons to handle
        NaNs properly in all cases.

From-SVN: r13153
parent 71bc0330
...@@ -3501,13 +3501,13 @@ print_operand (file, x, code) ...@@ -3501,13 +3501,13 @@ print_operand (file, x, code)
case NE: case NE:
fputs ("=", file); break; fputs ("=", file); break;
case GT: case GT:
fputs ("!>", file); break; fputs ("<=", file); break;
case GE: case GE:
fputs ("!>=", file); break; fputs ("<", file); break;
case LT: case LT:
fputs ("!<", file); break; fputs (">=", file); break;
case LE: case LE:
fputs ("!<=", file); break; fputs (">", file); break;
default: default:
abort (); abort ();
} }
......
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