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 9b3a080 commit 71249fdCopy full SHA for 71249fd
llvm/lib/TargetParser/Host.cpp
@@ -1755,6 +1755,7 @@ bool sys::getHostCPUFeatures(StringMap<bool> &Features) {
1755
Features["avxifma"] = HasLeaf7Subleaf1 && ((EAX >> 23) & 1) && HasAVXSave;
1756
Features["avxvnniint8"] = HasLeaf7Subleaf1 && ((EDX >> 4) & 1) && HasAVXSave;
1757
Features["avxneconvert"] = HasLeaf7Subleaf1 && ((EDX >> 5) & 1) && HasAVXSave;
1758
+ Features["amx-complex"] = HasLeaf7Subleaf1 && ((EDX >> 8) & 1) && HasAMXSave;
1759
Features["prefetchi"] = HasLeaf7Subleaf1 && ((EDX >> 14) & 1);
1760
1761
bool HasLeafD = MaxLevel >= 0xd &&
0 commit comments