diff options
author | andrew <andrew@FreeBSD.org> | 2013-01-14 08:39:48 +0000 |
---|---|---|
committer | andrew <andrew@FreeBSD.org> | 2013-01-14 08:39:48 +0000 |
commit | 37972b84c07007261150ec409aaf9b9dc14b209a (patch) | |
tree | 058bda93f3bfac922afcf513b2760630f0f58c07 /contrib/gcc | |
parent | a150559b39c68554c3b46f51c3a347efcdbd4f49 (diff) | |
download | FreeBSD-src-37972b84c07007261150ec409aaf9b9dc14b209a.zip FreeBSD-src-37972b84c07007261150ec409aaf9b9dc14b209a.tar.gz |
Switch the default CPU to an arm9. This removes compiler support for the
unsupported 26-bit addressing mode. This change is required for moving to
the ARM EABI.
Diffstat (limited to 'contrib/gcc')
-rw-r--r-- | contrib/gcc/config/arm/freebsd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gcc/config/arm/freebsd.h b/contrib/gcc/config/arm/freebsd.h index da7ffab..0f7f38a 100644 --- a/contrib/gcc/config/arm/freebsd.h +++ b/contrib/gcc/config/arm/freebsd.h @@ -97,7 +97,7 @@ #define TARGET_VERSION fprintf (stderr, " (FreeBSD/armv6 ELF)"); #else #undef SUBTARGET_CPU_DEFAULT -#define SUBTARGET_CPU_DEFAULT TARGET_CPU_strongarm +#define SUBTARGET_CPU_DEFAULT TARGET_CPU_arm9 #undef TARGET_VERSION #define TARGET_VERSION fprintf (stderr, " (FreeBSD/StrongARM ELF)"); #endif |