diff options
author | Kelvin Li <kkwli0@gmail.com> | 2017-01-03 05:23:48 +0000 |
---|---|---|
committer | Kelvin Li <kkwli0@gmail.com> | 2017-01-03 05:23:48 +0000 |
commit | 1851df563d08a23ce2b4f5a7bd717df1ed7ba86a (patch) | |
tree | 73fd3fa4ad709d30f67032a26b83961da847d124 /clang/lib/StaticAnalyzer/Core | |
parent | 7c030a2d91976562dc3d6563838c04561cec85ba (diff) | |
download | bcm5719-llvm-1851df563d08a23ce2b4f5a7bd717df1ed7ba86a.tar.gz bcm5719-llvm-1851df563d08a23ce2b4f5a7bd717df1ed7ba86a.zip |
[OpenMP] Sema and parsing for 'target teams distribute parallel for simd’ pragma
This patch is to implement sema and parsing for 'target teams distribute parallel for simd’ pragma.
Differential Revision: https://reviews.llvm.org/D28202
llvm-svn: 290862
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 5b2119aeda2..707168b4de0 100644 --- a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp +++ b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp @@ -869,6 +869,7 @@ void ExprEngine::Visit(const Stmt *S, ExplodedNode *Pred, case Stmt::OMPTargetTeamsDirectiveClass: case Stmt::OMPTargetTeamsDistributeDirectiveClass: case Stmt::OMPTargetTeamsDistributeParallelForDirectiveClass: + case Stmt::OMPTargetTeamsDistributeParallelForSimdDirectiveClass: llvm_unreachable("Stmt should not be in analyzer evaluation loop"); case Stmt::ObjCSubscriptRefExprClass: |