aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Sandiford <rsandifo@redhat.com>2002-08-01 20:08:03 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2002-08-01 20:08:03 +0000
commit479f2ceac010f84f73baed06b9c771e2750fad81 (patch)
tree414769d205709505abf4e5a05d23d857e83c1862 /gcc
parent7662da2f515fbfdacad4ed4286f0fb9abee5a1ea (diff)
downloadgcc-479f2ceac010f84f73baed06b9c771e2750fad81.zip
gcc-479f2ceac010f84f73baed06b9c771e2750fad81.tar.gz
gcc-479f2ceac010f84f73baed06b9c771e2750fad81.tar.bz2
* config/mips/mips.md: Add [!]TARGET_MIPS16 to sgtu conditions.
From-SVN: r55943
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/mips/mips.md8
2 files changed, 8 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 103e591..f9acab5 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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,
diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md
index f4c2c1d..91d1a92 100644
--- a/gcc/config/mips/mips.md
+++ b/gcc/config/mips/mips.md
@@ -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")])