commit | 1e0498a92d6e09d01c791a7f32299de6c8e02cac | [log] [tgz] |
---|---|---|
author | Alexey Bataev <a.bataev@hotmail.com> | Thu Jun 26 08:21:58 2014 +0000 |
committer | Alexey Bataev <a.bataev@hotmail.com> | Thu Jun 26 08:21:58 2014 +0000 |
tree | 80b5da2548f93a8a8f193b07da7851a496adb24d | |
parent | 07910d6ab548e7a57717af7e28d994cd652fd75d [diff] [blame] |
[OPENMP] Initial parsing and sema analysis for 'section' directive. llvm-svn: 211767
diff --git a/clang/lib/AST/StmtProfile.cpp b/clang/lib/AST/StmtProfile.cpp index 0a9a011..804003f 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp
@@ -364,6 +364,10 @@ VisitOMPExecutableDirective(S); } +void StmtProfiler::VisitOMPSectionDirective(const OMPSectionDirective *S) { + VisitOMPExecutableDirective(S); +} + void StmtProfiler::VisitExpr(const Expr *S) { VisitStmt(S); }