[clang] [llvm] [X86] Support apxf in attribute target (PR #184078)
Mikołaj Piróg via cfe-commits
cfe-commits at lists.llvm.org
Wed Jul 15 09:58:19 PDT 2026
================
@@ -174,6 +174,15 @@ bool X86TargetInfo::initFeatureMap(
continue;
}
+ if (Feature == "+apxf" || Feature == "-apxf") {
+ std::vector<StringRef> APXFeatures;
+ llvm::X86::expandAPXFeatures(Feature == "-apxf", getTriple().isOSWindows(),
----------------
mikolaj-pirog wrote:
Right, it's a leftover from earlier when it wasn't the case, it's corrected now
https://github.com/llvm/llvm-project/pull/184078
More information about the cfe-commits
mailing list