commit | d3f8dd2d1595a626412202385461978c43eb049d | [log] [tgz] |
---|---|---|
author | Alexey Bataev <a.bataev@hotmail.com> | Wed Jun 25 11:44:49 2014 +0000 |
committer | Alexey Bataev <a.bataev@hotmail.com> | Wed Jun 25 11:44:49 2014 +0000 |
tree | e66eed96fa2181897866ce8a280637e3ca7d096a | |
parent | 0b2d93c4f0c39f1cedb7a2ed59f3102eb7875efa [diff] [blame] |
[OPENMP] Initial support for 'sections' directive. llvm-svn: 211685
diff --git a/clang/lib/AST/StmtProfile.cpp b/clang/lib/AST/StmtProfile.cpp index cf7c6fc..0a9a011 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp
@@ -360,6 +360,10 @@ VisitOMPExecutableDirective(S); } +void StmtProfiler::VisitOMPSectionsDirective(const OMPSectionsDirective *S) { + VisitOMPExecutableDirective(S); +} + void StmtProfiler::VisitExpr(const Expr *S) { VisitStmt(S); }