mirror of git://gcc.gnu.org/git/gcc.git
i386.c (fold_builtin_cpu): Add M_AMDFAM17H to processor_model and "amdfam17h" to arch_names_table.
* config/i386/i386.c (fold_builtin_cpu): Add M_AMDFAM17H to processor_model and "amdfam17h" to arch_names_table. * doc/extend.texi (__builtin_cpu_is): Document amdfam17h CPU name. From-SVN: r252948
This commit is contained in:
parent
f94616d99d
commit
f5987ce627
|
|
@ -1,3 +1,9 @@
|
||||||
|
2017-09-18 Uros Bizjak <ubizjak@gmail.com>
|
||||||
|
|
||||||
|
* config/i386/i386.c (fold_builtin_cpu): Add M_AMDFAM17H
|
||||||
|
to processor_model and "amdfam17h" to arch_names_table.
|
||||||
|
* doc/extend.texi (__builtin_cpu_is): Document amdfam17h CPU name.
|
||||||
|
|
||||||
2017-09-18 Jakub Jelinek <jakub@redhat.com>
|
2017-09-18 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
PR c/82234
|
PR c/82234
|
||||||
|
|
|
||||||
|
|
@ -34404,6 +34404,7 @@ fold_builtin_cpu (tree fndecl, tree *args)
|
||||||
M_INTEL_KNL,
|
M_INTEL_KNL,
|
||||||
M_AMD_BTVER1,
|
M_AMD_BTVER1,
|
||||||
M_AMD_BTVER2,
|
M_AMD_BTVER2,
|
||||||
|
M_AMDFAM17H,
|
||||||
M_CPU_SUBTYPE_START,
|
M_CPU_SUBTYPE_START,
|
||||||
M_INTEL_COREI7_NEHALEM,
|
M_INTEL_COREI7_NEHALEM,
|
||||||
M_INTEL_COREI7_WESTMERE,
|
M_INTEL_COREI7_WESTMERE,
|
||||||
|
|
@ -34458,6 +34459,7 @@ fold_builtin_cpu (tree fndecl, tree *args)
|
||||||
{"bdver3", M_AMDFAM15H_BDVER3},
|
{"bdver3", M_AMDFAM15H_BDVER3},
|
||||||
{"bdver4", M_AMDFAM15H_BDVER4},
|
{"bdver4", M_AMDFAM15H_BDVER4},
|
||||||
{"btver2", M_AMD_BTVER2},
|
{"btver2", M_AMD_BTVER2},
|
||||||
|
{"amdfam17h", M_AMDFAM17H},
|
||||||
{"znver1", M_AMDFAM17H_ZNVER1},
|
{"znver1", M_AMDFAM17H_ZNVER1},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19914,8 +19914,11 @@ AMD Family 15h Bulldozer version 4.
|
||||||
@item btver2
|
@item btver2
|
||||||
AMD Family 16h CPU.
|
AMD Family 16h CPU.
|
||||||
|
|
||||||
@item znver1
|
@item amdfam17h
|
||||||
AMD Family 17h CPU.
|
AMD Family 17h CPU.
|
||||||
|
|
||||||
|
@item znver1
|
||||||
|
AMD Family 17h Zen version 1.
|
||||||
@end table
|
@end table
|
||||||
|
|
||||||
Here is an example:
|
Here is an example:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue