[clang] 0fe8af9 - Fix build bot problem with missing OMPC_novariants in switch.
Jennifer Yu via cfe-commits
cfe-commits at lists.llvm.org
Fri Apr 2 13:59:58 PDT 2021
Author: Jennifer Yu
Date: 2021-04-02T13:58:39-07:00
New Revision: 0fe8af94688aa03c01913c2001d6a1a911f42ce6
URL: https://github.com/llvm/llvm-project/commit/0fe8af94688aa03c01913c2001d6a1a911f42ce6
DIFF: https://github.com/llvm/llvm-project/commit/0fe8af94688aa03c01913c2001d6a1a911f42ce6.diff
LOG: Fix build bot problem with missing OMPC_novariants in switch.
Added:
Modified:
clang/lib/CodeGen/CGStmtOpenMP.cpp
Removed:
################################################################################
diff --git a/clang/lib/CodeGen/CGStmtOpenMP.cpp b/clang/lib/CodeGen/CGStmtOpenMP.cpp
index 02d4f6b3c315..acc3261a1fe6 100644
--- a/clang/lib/CodeGen/CGStmtOpenMP.cpp
+++ b/clang/lib/CodeGen/CGStmtOpenMP.cpp
@@ -5612,6 +5612,7 @@ static void emitOMPAtomicExpr(CodeGenFunction &CGF, OpenMPClauseKind Kind,
case OMPC_notinbranch:
case OMPC_link:
case OMPC_use:
+ case OMPC_novariants:
llvm_unreachable("Clause is not allowed in 'omp atomic'.");
}
}
More information about the cfe-commits
mailing list