commit | 2df347ad96350cc4f0761db412608193703a46c7 | [log] [tgz] |
---|---|---|
author | Alexey Bataev <a.bataev@hotmail.com> | Fri Jul 18 10:17:07 2014 +0000 |
committer | Alexey Bataev <a.bataev@hotmail.com> | Fri Jul 18 10:17:07 2014 +0000 |
tree | d45673a081abd8f272ddaa0d4622bb6f49c8ec1f | |
parent | 7a86a548b94d7316345481498a46335e1a220406 [diff] [blame] |
[OPENMP] Initial parsing and sema analysis for 'taskwait' directive. llvm-svn: 213363
diff --git a/clang/lib/AST/StmtProfile.cpp b/clang/lib/AST/StmtProfile.cpp index ae3be8d..0cd0f62 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp
@@ -415,6 +415,10 @@ VisitOMPExecutableDirective(S); } +void StmtProfiler::VisitOMPTaskwaitDirective(const OMPTaskwaitDirective *S) { + VisitOMPExecutableDirective(S); +} + void StmtProfiler::VisitExpr(const Expr *S) { VisitStmt(S); }