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
This commit is contained in:
Zack Weinberg 2002-04-18 17:38:23 +00:00 committed by Zack Weinberg
parent 528d8489c3
commit f18664c152
2 changed files with 5 additions and 12 deletions

View 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.

View File

@ -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]);
}")