aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/arc/arc.md12
2 files changed, 5 insertions, 12 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 309b00b..d37b372 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2002-04-18 Zack Weinberg <zack@codesourcery.com>
+
+ * config/arc/arc.md: Remove #if HOST_FLOAT_FORMAT !=
+ TARGET_FLOAT_FORMAT blocks.
+
2002-04-18 Hans-Peter Nilsson <hp@axis.com>
* config/cris/cris.h (TARGET_VERSION): Remove local version number.
diff --git a/gcc/config/arc/arc.md b/gcc/config/arc/arc.md
index 4df42cc..ae45885 100644
--- a/gcc/config/arc/arc.md
+++ b/gcc/config/arc/arc.md
@@ -325,12 +325,6 @@
"
{
/* Everything except mem = const or mem = mem can be done easily. */
-
-#if HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT
- if (GET_CODE (operands[1]) == CONST_DOUBLE)
- operands[1] = force_const_mem (SFmode, operands[1]);
-#endif
-
if (GET_CODE (operands[0]) == MEM)
operands[1] = force_reg (SFmode, operands[1]);
}")
@@ -354,12 +348,6 @@
"
{
/* Everything except mem = const or mem = mem can be done easily. */
-
-#if HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT
- if (GET_CODE (operands[1]) == CONST_DOUBLE)
- operands[1] = force_const_mem (DFmode, operands[1]);
-#endif
-
if (GET_CODE (operands[0]) == MEM)
operands[1] = force_reg (DFmode, operands[1]);
}")