diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-04-14 03:43:53 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-04-14 03:43:53 +0000 |
commit | cd89ba7da8a2fa947ce66c83e450cc64bbb8852c (patch) | |
tree | 369539f0f06881c110b6c85b531a84ce263f1a25 /gcc/config/arm | |
parent | 7660f91ee358318753057c2eac2133a2216767dc (diff) | |
download | gcc-cd89ba7da8a2fa947ce66c83e450cc64bbb8852c.tar.gz |
(TARGET_DEFAULT): Comment out TARGET_CPU_DEFAULT support for now.
(MULTLIB_DEFAULTS): Always little-endian for now.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@11760 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/arm')
-rw-r--r-- | gcc/config/arm/coff.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/config/arm/coff.h b/gcc/config/arm/coff.h index 3af43e14fba..44108ce28e5 100644 --- a/gcc/config/arm/coff.h +++ b/gcc/config/arm/coff.h @@ -30,9 +30,10 @@ Boston, MA 02111-1307, USA. */ point the default. NOT --nfp! --with{enable?} is supposed to replace it (right?), so let's stop using it. */ #undef TARGET_DEFAULT -#define TARGET_DEFAULT (ARM_FLAG_SOFT_FLOAT + TARGET_CPU_DEFAULT) +#define TARGET_DEFAULT (ARM_FLAG_SOFT_FLOAT /*+ TARGET_CPU_DEFAULT*/) -#if TARGET_CPU_DEFAULT & ARM_FLAG_BIG_END +/* ??? Is a big-endian default intended to be supported? */ +#if 0 /*TARGET_CPU_DEFAULT & ARM_FLAG_BIG_END*/ #define MULTILIB_DEFAULTS { "mbe", "mbig-endian" } #else #define MULTILIB_DEFAULTS { "mle", "mlittle-endian" } |