diff options
author | sandra <sandra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-08-01 20:59:31 +0000 |
---|---|---|
committer | sandra <sandra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-08-01 20:59:31 +0000 |
commit | 8dcd4f26b809e48b68702ef4dc8ecb19d6922c35 (patch) | |
tree | 25e5dc8fecee8d61a02e206a4c82dc917d42e105 /gcc/config/mips/mips.h | |
parent | f4dfbde222c4ee0b57883cb4cd94dd604558c3dd (diff) | |
download | gcc-8dcd4f26b809e48b68702ef4dc8ecb19d6922c35.tar.gz |
2012-08-01 Catherine Moore <clm@codesourcery.com>
Sandra Loosemore <sandra@codesourcery.com>
gcc/
* config/mips/mips-cpus.def (34kn): New.
* config/mips/mips.h (MIPS_ARCH_FLOAT_SPEC): Add 34kn.
(BASE_DRIVER_SELF_SPECS): Do not imply -mdsp for the 34kn.
* config/mips/mips-tables.opt: Regenerate.
* doc/invoke.texi (MIPS Options): Document -march=34kn.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@190053 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mips/mips.h')
-rw-r--r-- | gcc/config/mips/mips.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 68177dee8e1..073c82e5365 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -715,7 +715,7 @@ struct mips_cpu_info { #define MIPS_ARCH_FLOAT_SPEC \ "%{mhard-float|msoft-float|mno-float|march=mips*:; \ march=vr41*|march=m4k|march=4k*|march=24kc|march=24kec \ - |march=34kc|march=74kc|march=1004kc|march=5kc \ + |march=34kc|march=34kn|march=74kc|march=1004kc|march=5kc \ |march=octeon|march=xlr: -msoft-float; \ march=*: -mhard-float}" @@ -763,7 +763,7 @@ struct mips_cpu_info { /* A spec that infers the -mdsp setting from an -march argument. */ #define BASE_DRIVER_SELF_SPECS \ "%{!mno-dsp: \ - %{march=24ke*|march=34k*|march=1004k*: -mdsp} \ + %{march=24ke*|march=34kc*|march=34kf*|march=34kx*|march=1004k*: -mdsp} \ %{march=74k*:%{!mno-dspr2: -mdspr2 -mdsp}}}" #define DRIVER_SELF_SPECS BASE_DRIVER_SELF_SPECS |