From: Jeff Law Date: Wed, 13 Nov 1996 06:24:06 +0000 (-0700) Subject: pa.c (print_operand, case 'Y'): Fix comparisons to handle NaNs properly in all cases. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c0624dec024baddbc950a685630deedf3daf1180;p=gcc.git 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 --- diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index d8bc1e1b911..c8bff3b44ea 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -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 (); }