================ @@ -48,6 +48,19 @@ std::optional<AArch64::ArchInfo> AArch64::ArchInfo::findBySubArch(StringRef SubA return {}; } +unsigned AArch64::getFMVPriority(ArrayRef<StringRef> Features) { + constexpr unsigned MaxFMVPriority = 1000; + unsigned Priority = 0; + unsigned NumFeatures = 0; + for (StringRef Feature : Features) { + if (auto Ext = parseFMVExtension(Feature)) { + Priority = std::max(Priority, Ext->Priority); + NumFeatures++; + } + } + return Priority + MaxFMVPriority * NumFeatures; ---------------- labrinea wrote:
> Select the most specific version else Admittedly vague, but I believe "most specific" means the one with the most features here https://github.com/llvm/llvm-project/pull/116257 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits