rs6000.md ("bunordered"): Disable for e500.
authorAldy Hernandez <aldyh@redhat.com>
Thu, 15 Jul 2004 21:07:49 +0000 (21:07 +0000)
committerAldy Hernandez <aldyh@gcc.gnu.org>
Thu, 15 Jul 2004 21:07:49 +0000 (21:07 +0000)
        * config/rs6000/rs6000.md ("bunordered"): Disable for e500.
        ("bordered"): Same.

From-SVN: r84778

gcc/ChangeLog
gcc/config/rs6000/rs6000.md

index e9e5235807ddf08c9c9ae23e1432bbe746c3b54b..3dd6fd36764921ca63d53a92301d18c16db40ff5 100644 (file)
@@ -1,3 +1,8 @@
+2004-07-15  Aldy Hernandez  <aldyh@redhat.com>
+
+        * config/rs6000/rs6000.md ("bunordered"): Disable for e500.
+        ("bordered"): Same.
+
 2004-07-15  Aldy Hernandez  <aldyh@redhat.com>
 
         * config/rs6000/rs6000.md ("*cceq_ior_compare"): Allow
index 432ceff70197a12983fc0c6ea9bed9f1aefd01df..7a8fffa69937f9bbfe34df5b346f96293e6f278e 100644 (file)
 
 (define_expand "bunordered"
   [(use (match_operand 0 "" ""))]
-  ""
+  "! (TARGET_HARD_FLOAT && TARGET_E500 && !TARGET_FPRS)"
   "{ rs6000_emit_cbranch (UNORDERED, operands[0]); DONE; }")
 
 (define_expand "bordered"
   [(use (match_operand 0 "" ""))]
-  ""
+  "! (TARGET_HARD_FLOAT && TARGET_E500 && !TARGET_FPRS)"
   "{ rs6000_emit_cbranch (ORDERED, operands[0]); DONE; }")
 
 (define_expand "buneq"