diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2015-09-25 11:24:07 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2015-09-25 04:24:07 -0700 |
commit | 2d6b2e283126b5daa50ec9cc67a55378c165a73f (patch) | |
tree | 0a6a020dd70711031b14b4d247c7b37f7a29f86b /gcc/config.gcc | |
parent | 974348eec712f2e48e683c6e577011ac49241e0f (diff) | |
download | gcc-2d6b2e283126b5daa50ec9cc67a55378c165a73f.zip gcc-2d6b2e283126b5daa50ec9cc67a55378c165a73f.tar.gz gcc-2d6b2e283126b5daa50ec9cc67a55378c165a73f.tar.bz2 |
Rename IA MCU processor lakemount to lakemont
IA MCU processor name is lakemont, not lakemount.
gcc/
* config.gcc (x86_archs): Replace lakemount with lakemont.
(with_cpu): Likewise.
(with_arch): Likewise.
* config/i386/i386-c.c (ix86_target_macros_internal): Replace
PROCESSOR_LAKEMOUNT with PROCESSOR_LAKEMONT. Replace
__tune_lakemount__ with __tune_lakemont__.
* config/i386/i386.c (lakemount_cost): Renamed to ...
(lakemont_cost): This.
(m_LAKEMOUNT): Renamed to ...
(m_LAKEMONT): This.
(initial_ix86_arch_features): Replace m_LAKEMOUNT with m_LAKEMONT.
(processor_target_table): Replace "lakemount" with "lakemont".
(processor_alias_table): Likewise.
(ix86_issue_rate): Replace PROCESSOR_LAKEMOUNT with
PROCESSOR_LAKEMONT.
(ix86_adjust_cost): Likewise.
(ia32_multipass_dfa_lookahead): Likewise.
* config/i386/i386.h (processor_type): Likewise.
* config/i386/x86-tune.def: Replace m_LAKEMOUNT with m_LAKEMONT.
* doc/invoke.texi: Replace lakemount with lakemont. Replace
Lakemount with Lakemont.
gcc/testsuite/
* gcc.target/i386/pr66749.c (dg-options): Replace
-mtune=lakemount with -mtune=lakemont.
* gcc.target/i386/pr66821.c (dg-options): Likewise.
* gcc.target/i386/pr67329.c (dg-options): Likewise.
From-SVN: r228115
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 41814b8..c4c11f9 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -587,7 +587,7 @@ tm_defines="$tm_defines LIBC_GLIBC=1 LIBC_UCLIBC=2 LIBC_BIONIC=3 LIBC_MUSL=4" x86_archs="athlon athlon-4 athlon-fx athlon-mp athlon-tbird \ athlon-xp k6 k6-2 k6-3 geode c3 c3-2 winchip-c6 winchip2 i386 i486 \ i586 i686 pentium pentium-m pentium-mmx pentium2 pentium3 pentium3m \ -pentium4 pentium4m pentiumpro prescott lakemount" +pentium4 pentium4m pentiumpro prescott lakemont" # 64-bit x86 processors supported by --with-arch=. Each processor # MUST be separated by exactly one space. @@ -3287,7 +3287,7 @@ esac if test x$with_cpu = x ; then case ${target} in i[34567]86-*-elfiamcu) - with_cpu=lakemount + with_cpu=lakemont ;; i[34567]86-*-*|x86_64-*-*) with_cpu=$cpu @@ -3385,7 +3385,7 @@ if test x$with_arch = x ; then # and TARGET_SUBTARGET64_ISA_DEFAULT in config/i386/darwin.h. ;; i[34567]86-*-elfiamcu) - with_arch=lakemount + with_arch=lakemont ;; i[34567]86-*-*) # --with-fpmath sets the default ISA to SSE2, which is the same |