We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2124770 commit d072431Copy full SHA for d072431
clang/lib/Basic/Targets/X86.cpp
@@ -123,8 +123,8 @@ bool X86TargetInfo::initFeatureMap(
123
enum { FE_NOSET = -1, FE_FALSE, FE_TRUE };
124
int HasEVEX512 = FE_NOSET;
125
bool HasAVX512F = Features["avx512f"];
126
- bool HasAVX10 = Features["avx10.1-256"];
127
- bool HasAVX10_512 = Features["avx10.1-512"];
+ bool HasAVX10 = false;
+ bool HasAVX10_512 = false;
128
std::string LastAVX10;
129
std::string LastAVX512;
130
for (const auto &Feature : FeaturesVec) {
0 commit comments