From bc172e532a89754d47fef1306064a26a4dc0a76b Mon Sep 17 00:00:00 2001 From: Michael Kruse Date: Thu, 4 Mar 2021 23:21:29 -0600 Subject: [PATCH] [clang][StaticAnalyzer] Compilation fix. An enum was unhandled after landing of D94973. Add the new OMPCanonicalLoopClass to the list of unhandled cases. --- clang/lib/StaticAnalyzer/Core/ExprEngine.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp index 465af24..a388fc9 100644 --- a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp +++ b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp @@ -1238,6 +1238,7 @@ void ExprEngine::Visit(const Stmt *S, ExplodedNode *Pred, case Stmt::SEHExceptStmtClass: case Stmt::SEHLeaveStmtClass: case Stmt::SEHFinallyStmtClass: + case Stmt::OMPCanonicalLoopClass: case Stmt::OMPParallelDirectiveClass: case Stmt::OMPSimdDirectiveClass: case Stmt::OMPForDirectiveClass: -- 2.7.4