diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2019-10-10 20:13:02 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2019-10-10 20:13:02 +0000 |
commit | 60e51c48033c5d6cfc7aa8e07d1143971e24261a (patch) | |
tree | 5ad12f1dc5c1e9ec65a17839606ed3278055f9e7 /clang/lib/StaticAnalyzer/Core/ExprEngine.cpp | |
parent | 8dd16ed0c8d70e169544fd3e3732203aed55a806 (diff) | |
download | bcm5719-llvm-60e51c48033c5d6cfc7aa8e07d1143971e24261a.tar.gz bcm5719-llvm-60e51c48033c5d6cfc7aa8e07d1143971e24261a.zip |
[OPENMP50]Support for 'master taskloop' directive.
Added full support for master taskloop directive.
llvm-svn: 374437
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 2e062564088..799e26e9b1c 100644 --- a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp +++ b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp @@ -1265,6 +1265,7 @@ void ExprEngine::Visit(const Stmt *S, ExplodedNode *Pred, case Stmt::OMPCancelDirectiveClass: case Stmt::OMPTaskLoopDirectiveClass: case Stmt::OMPTaskLoopSimdDirectiveClass: + case Stmt::OMPMasterTaskLoopDirectiveClass: case Stmt::OMPDistributeDirectiveClass: case Stmt::OMPDistributeParallelForDirectiveClass: case Stmt::OMPDistributeParallelForSimdDirectiveClass: |