diff options
author | Julia Koval <julia.koval@intel.com> | 2018-03-14 11:26:38 +0100 |
---|---|---|
committer | Julia Koval <jkoval@gcc.gnu.org> | 2018-03-14 11:26:38 +0100 |
commit | 79ab536427e403df631eb3ed3480c6330b2ff898 (patch) | |
tree | 11df899e263b8b4c09812cf2a7213650a112a593 /gcc/config.gcc | |
parent | 788949a3744699804d94de17c385bf71cd1176b6 (diff) | |
download | gcc-79ab536427e403df631eb3ed3480c6330b2ff898.zip gcc-79ab536427e403df631eb3ed3480c6330b2ff898.tar.gz gcc-79ab536427e403df631eb3ed3480c6330b2ff898.tar.bz2 |
Split-up -march=icelake on -march=icelake-server and -march=icelake-client
Split-up -march=icelake on -march=icelake-server and -march=icelake-client
gcc/
* config.gcc (icelake-client, icelake-server): New.
(icelake): Remove.
* config/i386/i386.c (initial_ix86_tune_features): Extend to 64 bit.
(initial_ix86_arch_features): Ditto.
(PTA_SKYLAKE): Add SGX.
(PTA_ICELAKE): Remove.
(PTA_ICELAKE_CLIENT): New.
(PTA_ICELAKE_SERVER): New.
(ix86_option_override_internal): Split up icelake on icelake client and
icelake server.
(get_builtin_code_for_version): Ditto.
(fold_builtin_cpu): Ditto.
* config/i386/driver-i386.c (config/i386/driver-i386.c): Ditto.
* config/i386/i386-c.c (ix86_target_macros_internal): Ditto
* config/i386/i386.h (processor_type): Ditto.
* doc/invoke.texi: Ditto.
gcc/testsuite/
* g++.dg/ext/mv16.C: Split up icelake on icelake client and
icelake-server.
* gcc.target/i386/funcspec-56.inc: Ditto.
libgcc/
* config/i386/cpuinfo.h (processor_subtypes): Split up icelake on
icelake-client and icelake-server.
From-SVN: r258518
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 81627d5..f7b2659 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -637,7 +637,7 @@ x86_64_archs="amdfam10 athlon64 athlon64-sse3 barcelona bdver1 bdver2 \ bdver3 bdver4 znver1 btver1 btver2 k8 k8-sse3 opteron opteron-sse3 nocona \ core2 corei7 corei7-avx core-avx-i core-avx2 atom slm nehalem westmere \ sandybridge ivybridge haswell broadwell bonnell silvermont knl knm \ -skylake-avx512 cannonlake icelake x86-64 native" +skylake-avx512 cannonlake icelake-client icelake-server x86-64 native" # Additional x86 processors supported by --with-cpu=. Each processor # MUST be separated by exactly one space. |