summaryrefslogtreecommitdiffstats
path: root/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
diff options
context:
space:
mode:
authorKelvin Li <kkwli0@gmail.com>2016-12-29 22:16:30 +0000
committerKelvin Li <kkwli0@gmail.com>2016-12-29 22:16:30 +0000
commit80e8f562846e9d2b7c73f0feadb1c160f5e59a51 (patch)
treea8779e799045b14b5741ff4a47919c1ec821e850 /clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
parente0bd37e78fb4a6e80e6f43c2b959b8aeb9ee6303 (diff)
downloadbcm5719-llvm-80e8f562846e9d2b7c73f0feadb1c160f5e59a51.tar.gz
bcm5719-llvm-80e8f562846e9d2b7c73f0feadb1c160f5e59a51.zip
[OpenMP] Sema and parsing for 'target teams distribute parallel for’ pragma
This patch is to implement sema and parsing for 'target teams distribute parallel for’ pragma. Differential Revision: https://reviews.llvm.org/D28160 llvm-svn: 290725
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/ExprEngine.cpp')
-rw-r--r--clang/lib/StaticAnalyzer/Core/ExprEngine.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
index 1e7ce8c7aa6..5b2119aeda2 100644
--- a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
+++ b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
@@ -868,6 +868,7 @@ void ExprEngine::Visit(const Stmt *S, ExplodedNode *Pred,
case Stmt::OMPTeamsDistributeParallelForDirectiveClass:
case Stmt::OMPTargetTeamsDirectiveClass:
case Stmt::OMPTargetTeamsDistributeDirectiveClass:
+ case Stmt::OMPTargetTeamsDistributeParallelForDirectiveClass:
llvm_unreachable("Stmt should not be in analyzer evaluation loop");
case Stmt::ObjCSubscriptRefExprClass:
OpenPOWER on IntegriCloud