diff options
author | Alexander Musman <alexander.musman@gmail.com> | 2014-07-21 09:42:05 +0000 |
---|---|---|
committer | Alexander Musman <alexander.musman@gmail.com> | 2014-07-21 09:42:05 +0000 |
commit | d9ed09f7a5f149ea3ed7904f83ed70bf12963842 (patch) | |
tree | b4efe1d3d62612141434996c2c6d7db1fe730d27 /clang/lib/StaticAnalyzer/Core/ExprEngine.cpp | |
parent | ddf36dea135db24d073acd8dbc1251dc798624bb (diff) | |
download | bcm5719-llvm-d9ed09f7a5f149ea3ed7904f83ed70bf12963842.tar.gz bcm5719-llvm-d9ed09f7a5f149ea3ed7904f83ed70bf12963842.zip |
[OPENMP] Parsing/Sema of the OpenMP directive 'critical'.
llvm-svn: 213510
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 8da1d8e9422..af2ef5e07a6 100644 --- a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp +++ b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp @@ -738,6 +738,7 @@ void ExprEngine::Visit(const Stmt *S, ExplodedNode *Pred, case Stmt::OMPSectionDirectiveClass: case Stmt::OMPSingleDirectiveClass: case Stmt::OMPMasterDirectiveClass: + case Stmt::OMPCriticalDirectiveClass: case Stmt::OMPParallelForDirectiveClass: case Stmt::OMPParallelSectionsDirectiveClass: case Stmt::OMPTaskDirectiveClass: |