diff options
| author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-04-18 17:38:23 +0000 |
|---|---|---|
| committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-04-18 17:38:23 +0000 |
| commit | 1b2c7c71cd4651fb7179b5ead448cb9b5904ff74 (patch) | |
| tree | 36573791feea5c11e7969a6ceb501a6ef61beaee | |
| parent | 5977cfc68e39a67db3d7758f6abdf9aacce50bc2 (diff) | |
| download | ppe42-gcc-1b2c7c71cd4651fb7179b5ead448cb9b5904ff74.tar.gz ppe42-gcc-1b2c7c71cd4651fb7179b5ead448cb9b5904ff74.zip | |
* config/arc/arc.md: Remove #if HOST_FLOAT_FORMAT !=
TARGET_FLOAT_FORMAT blocks.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@52479 138bc75d-0d04-0410-961f-82ee72b054a4
| -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 309b00be11f..d37b3723eae 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 4df42cc91b5..ae4588502df 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]); }") |

