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
This commit is contained in:
Jeff Law 1996-11-12 23:24:06 -07:00
parent 71bc03306f
commit c0624dec02

View File

@ -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 ();
}