diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2019-10-18 16:47:35 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2019-10-18 16:47:35 +0000 |
commit | b8552abfe7ce0c4cd37d136bbcf8cb319a28f260 (patch) | |
tree | 9d8564667394f0f86888e46034f37dd822d9e5f8 /clang/lib/StaticAnalyzer/Core | |
parent | 7e1637451d20d40553165f806094ada30cb0a708 (diff) | |
download | bcm5719-llvm-b8552abfe7ce0c4cd37d136bbcf8cb319a28f260.tar.gz bcm5719-llvm-b8552abfe7ce0c4cd37d136bbcf8cb319a28f260.zip |
[OPENMP50]Add support for master taskloop simd.
Added trsing/semantics/codegen for combined construct master taskloop simd.
llvm-svn: 375255
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core')
-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 ea1df1b0df8..04301ba5c16 100644 --- a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp +++ b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp @@ -1266,6 +1266,7 @@ void ExprEngine::Visit(const Stmt *S, ExplodedNode *Pred, case Stmt::OMPTaskLoopDirectiveClass: case Stmt::OMPTaskLoopSimdDirectiveClass: case Stmt::OMPMasterTaskLoopDirectiveClass: + case Stmt::OMPMasterTaskLoopSimdDirectiveClass: case Stmt::OMPParallelMasterTaskLoopDirectiveClass: case Stmt::OMPDistributeDirectiveClass: case Stmt::OMPDistributeParallelForDirectiveClass: |