diff options
author | Gerald Pfeifer <gerald@pfeifer.com> | 2020-12-13 01:00:36 +0100 |
---|---|---|
committer | Gerald Pfeifer <gerald@pfeifer.com> | 2020-12-15 00:13:42 +0100 |
commit | 22a90217305ee8c116bbc12c8d07abe7ca0ff61d (patch) | |
tree | ed7b2332074f6efa6eafe9cd757ea4a18b7589fe | |
parent | 4c275e83ddc5f0c42eac6bdb793d6c203b7acec7 (diff) | |
download | gcc-22a90217305ee8c116bbc12c8d07abe7ca0ff61d.zip gcc-22a90217305ee8c116bbc12c8d07abe7ca0ff61d.tar.gz gcc-22a90217305ee8c116bbc12c8d07abe7ca0ff61d.tar.bz2 |
rs6000: Update the processor defaults for FreeBSD
gcc/ChangeLog:
2020-12-13 Piotr Kubaj <pkubaj@FreeBSD.org>
Gerald Pfeifer <gerald@pfeifer.com>
* config/rs6000/freebsd64.h (PROCESSOR_DEFAULT): Update
to PROCESSOR_PPC7450.
(PROCESSOR_DEFAULT64): Update to PROCESSOR_POWER8.
-rw-r--r-- | gcc/config/rs6000/freebsd64.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/config/rs6000/freebsd64.h b/gcc/config/rs6000/freebsd64.h index 6984ca5..4b2da57 100644 --- a/gcc/config/rs6000/freebsd64.h +++ b/gcc/config/rs6000/freebsd64.h @@ -51,11 +51,10 @@ extern int dot_symbols; #define SET_CMODEL(opt) do {} while (0) #endif -/* Until now the 970 is the only Processor where FreeBSD 64-bit runs on. */ #undef PROCESSOR_DEFAULT -#define PROCESSOR_DEFAULT PROCESSOR_POWER4 +#define PROCESSOR_DEFAULT PROCESSOR_PPC7450 #undef PROCESSOR_DEFAULT64 -#define PROCESSOR_DEFAULT64 PROCESSOR_POWER4 +#define PROCESSOR_DEFAULT64 PROCESSOR_POWER8 /* We don't need to generate entries in .fixup, except when -mrelocatable or -mrelocatable-lib is given. */ |