diff options
author | Richard Earnshaw <rearnsha@arm.com> | 2017-06-16 21:04:23 +0000 |
---|---|---|
committer | Richard Earnshaw <rearnsha@gcc.gnu.org> | 2017-06-16 21:04:23 +0000 |
commit | 11389610242c157e43dd5c1f469970e514efe60a (patch) | |
tree | e75c28c061a8ae841a2cc08a8a8805e88668ba99 /gcc/config/arm/netbsd-elf.h | |
parent | aaf8008ce7e980b8f04d6dfaaa2c5ec7f4da1c67 (diff) | |
download | gcc-11389610242c157e43dd5c1f469970e514efe60a.zip gcc-11389610242c157e43dd5c1f469970e514efe60a.tar.gz gcc-11389610242c157e43dd5c1f469970e514efe60a.tar.bz2 |
[arm] Make 'auto' the default FPU selection option.
Finally, we can make 'auto' the default choice for the FPU option. It's
still possible to override this during configure, but we will eventually
deprecate that, moving to the new cpu/architecture selection mechanism.
* config/arm/arm.h (FPUTYPE_AUTO): Define.
* config/arm/arm.c (arm_option_override): Use FPUTYPE_AUTO if the
fpu is not specified by the user/command-line.
* config/arm/bpabi.h (FPUTYPE_DEFAULT): Delete.
* config/arm/netbsd-elf.h (FPUTYPE_DEFAULT): Delete.
* config/arm/linux-elf.h (FPUTYPE_DEFAULT): Delete.
* config/arm/vxworks.h (FPUTYPE_DEFAULT): Delete.
* common/config/arm/arm-common.c (arm_canon_arch_option): Use
FPUTYPE_AUTO insted of FPUTYPE_DEFAULT.
From-SVN: r249295
Diffstat (limited to 'gcc/config/arm/netbsd-elf.h')
-rw-r--r-- | gcc/config/arm/netbsd-elf.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/config/arm/netbsd-elf.h b/gcc/config/arm/netbsd-elf.h index 8811af7..02ff316 100644 --- a/gcc/config/arm/netbsd-elf.h +++ b/gcc/config/arm/netbsd-elf.h @@ -153,7 +153,3 @@ do \ (void) sysarch (0, &s); \ } \ while (0) - -#undef FPUTYPE_DEFAULT -#define FPUTYPE_DEFAULT "vfp" - |