diff options
author | Paul Brook <pbrook@gcc.gnu.org> | 2004-11-18 15:59:48 +0000 |
---|---|---|
committer | Paul Brook <pbrook@gcc.gnu.org> | 2004-11-18 15:59:48 +0000 |
commit | 3d8532aa2a16a14d5cbb454cefcd1a3d9d342ff8 (patch) | |
tree | 2f94ce61489cbc8b61b3f4668e3bf73ef12e07ec /gcc/config/arm/netbsd-elf.h | |
parent | 94b112fb245529e3c01a033faa74bced5c897a82 (diff) | |
download | gcc-3d8532aa2a16a14d5cbb454cefcd1a3d9d342ff8.zip gcc-3d8532aa2a16a14d5cbb454cefcd1a3d9d342ff8.tar.gz gcc-3d8532aa2a16a14d5cbb454cefcd1a3d9d342ff8.tar.bz2 |
arm.c (target_float_switch): New variable..
* config/arm/arm.c (target_float_switch): New variable..
(arm_override_options): Use TARGET_DEFAULT_FLOAT_ABI and
target_float_switch.
* config/arm/arm.h (target_float_switch): Declare.
(ARM_FLAG_SOFT_FLOAT): Remove.
(TARGET_SWITCHES): Remove hard-float and soft-float.
(TARGET_OPTIONS): Add hard-float and soft-float.
(TARGET_DEFAULT_FLOAT_ABI): Define.
* config/arm/coff.h (TARGET_DEFAULT_FLOAT_ABI): Define
(TARGET_DEFAULT): Don't use ARM_FLAG_SOFT_FLOAT.
* config/arm/elf.h: Don't use ARM_FLAG_SOFT_FLOAT.
* config/arm/netbsd-elf.h: Ditto.
* config/arm/netbsd.h: Ditto.
* config/arm/pe.h: Ditto.
* config/arm/unknown-elf.h: Ditto.
* config/arm/wince-pe.h: Ditto.
* config/arm/linux-elf.h (TARGET_DEFAULT_FLOAT_ABI): Define.
* config/arm/semi.h (TARGET_DEFAULT_FLOAT_ABI): Define.
* config/arm/semiaof.h (TARGET_DEFAULT_FLOAT_ABI): Define.
From-SVN: r90872
Diffstat (limited to 'gcc/config/arm/netbsd-elf.h')
-rw-r--r-- | gcc/config/arm/netbsd-elf.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/config/arm/netbsd-elf.h b/gcc/config/arm/netbsd-elf.h index 32251bc..cc69064 100644 --- a/gcc/config/arm/netbsd-elf.h +++ b/gcc/config/arm/netbsd-elf.h @@ -35,8 +35,7 @@ /* Default it to use ATPCS with soft-VFP. */ #undef TARGET_DEFAULT #define TARGET_DEFAULT \ - (ARM_FLAG_SOFT_FLOAT \ - | ARM_FLAG_APCS_FRAME \ + (ARM_FLAG_APCS_FRAME \ | TARGET_ENDIAN_DEFAULT) #undef ARM_DEFAULT_ABI |