OSDN Git Service

* config/arc/arc.md: Remove #if HOST_FLOAT_FORMAT !=
authorzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 18 Apr 2002 17:38:23 +0000 (17:38 +0000)
committerzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 18 Apr 2002 17:38:23 +0000 (17:38 +0000)
TARGET_FLOAT_FORMAT blocks.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@52479 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/arc/arc.md

index 309b00b..d37b372 100644 (file)
@@ -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.
index 4df42cc..ae45885 100644 (file)
   "
 {
   /* 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]);
 }")
   "
 {
   /* 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]);
 }")