From: Zack Weinberg Date: Thu, 18 Apr 2002 17:38:23 +0000 (+0000) Subject: arc.md: Remove #if HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT blocks. X-Git-Tag: releases/gcc-3.3.0~5614 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f18664c1527ff43689bd98c594ce67a1a5d5840a;p=thirdparty%2Fgcc.git arc.md: Remove #if HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT blocks. * config/arc/arc.md: Remove #if HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT blocks. From-SVN: r52479 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 309b00be11f2..d37b3723eae2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-04-18 Zack Weinberg + + * config/arc/arc.md: Remove #if HOST_FLOAT_FORMAT != + TARGET_FLOAT_FORMAT blocks. + 2002-04-18 Hans-Peter Nilsson * 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 4df42cc91b51..ae4588502df8 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]); }")