diff options
author | Zack Weinberg <zack@codesourcery.com> | 2002-04-18 17:38:23 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2002-04-18 17:38:23 +0000 |
commit | f18664c1527ff43689bd98c594ce67a1a5d5840a (patch) | |
tree | 36573791feea5c11e7969a6ceb501a6ef61beaee | |
parent | 528d8489c3ac6cc8cb36cb7639683981817a55ab (diff) | |
download | gcc-f18664c1527ff43689bd98c594ce67a1a5d5840a.zip gcc-f18664c1527ff43689bd98c594ce67a1a5d5840a.tar.gz gcc-f18664c1527ff43689bd98c594ce67a1a5d5840a.tar.bz2 |
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
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/arc/arc.md | 12 |
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]); }") |