diff options
author | Gerald Pfeifer <gerald@pfeifer.com> | 2015-11-15 20:03:24 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 2015-11-15 20:03:24 +0000 |
commit | 01a0467e237b69e02f5467babfe2d235c8c68b68 (patch) | |
tree | 596c2263371434b6412c0cb62775a191a624a953 | |
parent | 78ab5260a105594362d0fc96c0b455844b6accd4 (diff) | |
download | gcc-01a0467e237b69e02f5467babfe2d235c8c68b68.zip gcc-01a0467e237b69e02f5467babfe2d235c8c68b68.tar.gz gcc-01a0467e237b69e02f5467babfe2d235c8c68b68.tar.bz2 |
freebsd.h (SUBTARGET32_DEFAULT_CPU): Change to i586.
* config/i386/freebsd.h (SUBTARGET32_DEFAULT_CPU): Change to i586.
Remove support for FreeBSD 5 and earlier.
From-SVN: r230397
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/freebsd.h | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ed95601..a034df8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-11-15 Gerald Pfeifer <gerald@pfeifer.com> + + * config/i386/freebsd.h (SUBTARGET32_DEFAULT_CPU): Change to i586. + Remove support for FreeBSD 5 and earlier. + 2015-11-14 Trevor Saunders <tbsaunde+gcc@tbsaunde.org> * configure: Regenerate. diff --git a/gcc/config/i386/freebsd.h b/gcc/config/i386/freebsd.h index 6ce160e..db7dd7f 100644 --- a/gcc/config/i386/freebsd.h +++ b/gcc/config/i386/freebsd.h @@ -121,10 +121,7 @@ along with GCC; see the file COPYING3. If not see /* Static stack checking is supported by means of probes. */ #define STACK_CHECK_STATIC_BUILTIN 1 -/* Support for i386 has been removed from FreeBSD 6.0 onward. */ -#if FBSD_MAJOR >= 6 -#define SUBTARGET32_DEFAULT_CPU "i486" -#endif +#define SUBTARGET32_DEFAULT_CPU "i586" #define TARGET_ASM_FILE_END file_end_indicate_exec_stack |