* config/mips/mips.md: Add [!]TARGET_MIPS16 to sgtu conditions.
authorRichard Sandiford <rsandifo@redhat.com>
Thu, 1 Aug 2002 20:08:03 +0000 (20:08 +0000)
committerRichard Sandiford <rsandifo@gcc.gnu.org>
Thu, 1 Aug 2002 20:08:03 +0000 (20:08 +0000)
From-SVN: r55943

gcc/ChangeLog
gcc/config/mips/mips.md

index 103e5917a916c2073ee4ab874ef6763e1c4b6176..f9acab5c63a1a229653becf46efcd421cabd106c 100644 (file)
@@ -1,3 +1,7 @@
+2002-08-01  Richard Sandiford  <rsandifo@redhat.com>
+
+       * config/mips/mips.md: Add [!]TARGET_MIPS16 to sgtu conditions.
+
 2002-08-01  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
 
        * gcse.c (expr_hash_table_size, n_exprs, set_hash_table_size,
index f4c2c1dcf9816f19fb3d78bb42bdd7de26a6f008..91d1a9254a9cf80f2aef4b27a77c5a192cebf9b6 100644 (file)
@@ -8823,7 +8823,7 @@ move\\t%0,%z4\\n\\
   [(set (match_operand:SI 0 "register_operand" "=d")
        (gtu:SI (match_operand:SI 1 "register_operand" "d")
                (match_operand:SI 2 "reg_or_0_operand" "dJ")))]
-  ""
+  "!TARGET_MIPS16"
   "sltu\\t%0,%z2,%1"
   [(set_attr "type"    "arith")
    (set_attr "mode"    "SI")])
@@ -8832,7 +8832,7 @@ move\\t%0,%z4\\n\\
   [(set (match_operand:SI 0 "register_operand" "=t")
        (gtu:SI (match_operand:SI 1 "register_operand" "d")
                (match_operand:SI 2 "register_operand" "d")))]
-  ""
+  "TARGET_MIPS16"
   "sltu\\t%2,%1"
   [(set_attr "type"    "arith")
    (set_attr "mode"    "SI")])
@@ -8841,7 +8841,7 @@ move\\t%0,%z4\\n\\
   [(set (match_operand:DI 0 "register_operand" "=d")
        (gtu:DI (match_operand:DI 1 "se_register_operand" "d")
                (match_operand:DI 2 "se_reg_or_0_operand" "dJ")))]
-  "TARGET_64BIT"
+  "TARGET_64BIT && !TARGET_MIPS16"
   "sltu\\t%0,%z2,%1"
   [(set_attr "type"    "arith")
    (set_attr "mode"    "DI")])
@@ -8850,7 +8850,7 @@ move\\t%0,%z4\\n\\
   [(set (match_operand:DI 0 "register_operand" "=t")
        (gtu:DI (match_operand:DI 1 "se_register_operand" "d")
                (match_operand:DI 2 "se_register_operand" "d")))]
-  "TARGET_64BIT"
+  "TARGET_64BIT && TARGET_MIPS16"
   "sltu\\t%2,%1"
   [(set_attr "type"    "arith")
    (set_attr "mode"    "DI")])