diff options
| author | Alexey Bataev <a.bataev@hotmail.com> | 2014-06-25 11:44:49 +0000 |
|---|---|---|
| committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-06-25 11:44:49 +0000 |
| commit | d3f8dd2d1595a626412202385461978c43eb049d (patch) | |
| tree | e66eed96fa2181897866ce8a280637e3ca7d096a /clang/lib/StaticAnalyzer | |
| parent | 0b2d93c4f0c39f1cedb7a2ed59f3102eb7875efa (diff) | |
| download | bcm5719-llvm-d3f8dd2d1595a626412202385461978c43eb049d.tar.gz bcm5719-llvm-d3f8dd2d1595a626412202385461978c43eb049d.zip | |
[OPENMP] Initial support for 'sections' directive.
llvm-svn: 211685
Diffstat (limited to 'clang/lib/StaticAnalyzer')
| -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 06eaf991bb6..45250f32b98 100644 --- a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp +++ b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp @@ -733,6 +733,7 @@ void ExprEngine::Visit(const Stmt *S, ExplodedNode *Pred, case Stmt::OMPParallelDirectiveClass: case Stmt::OMPSimdDirectiveClass: case Stmt::OMPForDirectiveClass: + case Stmt::OMPSectionsDirectiveClass: llvm_unreachable("Stmt should not be in analyzer evaluation loop"); case Stmt::ObjCSubscriptRefExprClass: |

