diff options
Diffstat (limited to 'clang/lib/CodeGen/CGOpenMPRuntime.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGOpenMPRuntime.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGOpenMPRuntime.cpp b/clang/lib/CodeGen/CGOpenMPRuntime.cpp index e9cf6928885..d2f18a5767b 100644 --- a/clang/lib/CodeGen/CGOpenMPRuntime.cpp +++ b/clang/lib/CodeGen/CGOpenMPRuntime.cpp @@ -11172,7 +11172,8 @@ template <> bool checkContext<OMPDeclareVariantAttr::CtxSetImplementation, OMPDeclareVariantAttr::CtxVendor>( const OMPDeclareVariantAttr *A) { - return !A->getImplVendor().compare("llvm"); + return llvm::all_of(A->implVendors(), + [](StringRef S) { return !S.compare_lower("llvm"); }); } static bool greaterCtxScore(ASTContext &Ctx, const Expr *LHS, const Expr *RHS) { |