summaryrefslogtreecommitdiffstats
path: root/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
diff options
context:
space:
mode:
authorAlexey Bataev <a.bataev@hotmail.com>2015-12-03 09:40:15 +0000
committerAlexey Bataev <a.bataev@hotmail.com>2015-12-03 09:40:15 +0000
commit0a6ed84a0d2f3c7c5aeb9d6b702ac127613d2b1b (patch)
treeb620bf6989da38a339fe426f1388412a9ce456fd /clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
parent830dfccfb2c06a1749938ce8cb78a1d6a295b942 (diff)
downloadbcm5719-llvm-0a6ed84a0d2f3c7c5aeb9d6b702ac127613d2b1b.tar.gz
bcm5719-llvm-0a6ed84a0d2f3c7c5aeb9d6b702ac127613d2b1b.zip
[OPENMP 4.5] Parsing/sema support for 'omp taskloop simd' directive.
OpenMP 4.5 adds directive 'taskloop simd'. Patch adds parsing/sema analysis for 'taskloop simd' directive and its clauses. llvm-svn: 254597
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 98e7c3b01a3..49950376438 100644
--- a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
+++ b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
@@ -830,6 +830,7 @@ void ExprEngine::Visit(const Stmt *S, ExplodedNode *Pred,
case Stmt::OMPCancellationPointDirectiveClass:
case Stmt::OMPCancelDirectiveClass:
case Stmt::OMPTaskLoopDirectiveClass:
+ case Stmt::OMPTaskLoopSimdDirectiveClass:
llvm_unreachable("Stmt should not be in analyzer evaluation loop");
case Stmt::ObjCSubscriptRefExprClass:
OpenPOWER on IntegriCloud