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)
case NE:
fputs ("=", file); break;
case GT:
fputs ("!>", file); break;
fputs ("<=", file); break;
case GE:
fputs ("!>=", file); break;
fputs ("<", file); break;
case LT:
fputs ("!<", file); break;
fputs (">=", file); break;
case LE:
fputs ("!<=", file); break;
fputs (">", file); break;
default:
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