aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1996-12-07 18:55:09 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1996-12-07 18:55:09 -0500
commitf1e869df631d79f4384a91fe8fd92948269b1cd1 (patch)
treeaaa1439be9e942aaa0894ed75fb1e579c839cc9a
parent3ba95fd3aafb182df5146ac1806423851c3adb37 (diff)
downloadgcc-f1e869df631d79f4384a91fe8fd92948269b1cd1.zip
gcc-f1e869df631d79f4384a91fe8fd92948269b1cd1.tar.gz
gcc-f1e869df631d79f4384a91fe8fd92948269b1cd1.tar.bz2
({and,ior,xor}si3_internal): Removed !TARGET_5200 from conditionals
now that entire insn is disabled when !TARGET_5200. From-SVN: r13247
-rw-r--r--gcc/config/m68k/m68k.md9
1 files changed, 3 insertions, 6 deletions
diff --git a/gcc/config/m68k/m68k.md b/gcc/config/m68k/m68k.md
index 30642e6..22200f6 100644
--- a/gcc/config/m68k/m68k.md
+++ b/gcc/config/m68k/m68k.md
@@ -3450,8 +3450,7 @@
if (GET_CODE (operands[2]) == CONST_INT
&& (INTVAL (operands[2]) | 0xffff) == 0xffffffff
&& (DATA_REG_P (operands[0])
- || offsettable_memref_p (operands[0]))
- && !TARGET_5200)
+ || offsettable_memref_p (operands[0])))
{
if (GET_CODE (operands[0]) != REG)
operands[0] = adj_offsettable_operand (operands[0], 2);
@@ -3553,8 +3552,7 @@
if (GET_CODE (operands[2]) == CONST_INT
&& INTVAL (operands[2]) >> 16 == 0
&& (DATA_REG_P (operands[0])
- || offsettable_memref_p (operands[0]))
- && !TARGET_5200)
+ || offsettable_memref_p (operands[0])))
{
if (GET_CODE (operands[0]) != REG)
operands[0] = adj_offsettable_operand (operands[0], 2);
@@ -3668,8 +3666,7 @@
{
if (GET_CODE (operands[2]) == CONST_INT
&& INTVAL (operands[2]) >> 16 == 0
- && (offsettable_memref_p (operands[0]) || DATA_REG_P (operands[0]))
- && !TARGET_5200)
+ && (offsettable_memref_p (operands[0]) || DATA_REG_P (operands[0])))
{
if (! DATA_REG_P (operands[0]))
operands[0] = adj_offsettable_operand (operands[0], 2);