diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-11 11:25:16 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-11 11:25:16 +0000 |
commit | 9c2e8ee72fe8c99a016a204a2f2b167cd17e188a (patch) | |
tree | 813773957814bc63d730a1a0476cb5fa60cf8d2f /clang/lib/StaticAnalyzer/Core/ExprEngine.cpp | |
parent | 83442bb8b2e5284276d3eb5a97457401ed61d3f7 (diff) | |
download | bcm5719-llvm-9c2e8ee72fe8c99a016a204a2f2b167cd17e188a.tar.gz bcm5719-llvm-9c2e8ee72fe8c99a016a204a2f2b167cd17e188a.zip |
[OPENMP] Parsing and sema analysis for 'omp task' directive.
llvm-svn: 212804
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/ExprEngine.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Core/ExprEngine.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp index 9b7e746b1c6..dec4d46b153 100644 --- a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp +++ b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp @@ -739,6 +739,7 @@ void ExprEngine::Visit(const Stmt *S, ExplodedNode *Pred, case Stmt::OMPSingleDirectiveClass: case Stmt::OMPParallelForDirectiveClass: case Stmt::OMPParallelSectionsDirectiveClass: + case Stmt::OMPTaskDirectiveClass: llvm_unreachable("Stmt should not be in analyzer evaluation loop"); case Stmt::ObjCSubscriptRefExprClass: |