commit | 68446b72530b7b8badf295a350de43265dbec06a | [log] [tgz] |
---|---|---|
author | Alexey Bataev <a.bataev@hotmail.com> | Fri Jul 18 07:47:19 2014 +0000 |
committer | Alexey Bataev <a.bataev@hotmail.com> | Fri Jul 18 07:47:19 2014 +0000 |
tree | a4c0e485fde8c4ef174df6e53e7f1cf9b4a8cfb9 | |
parent | 05c30880b6590bc7ca7ead689d2124994f795ffe [diff] [blame] |
[OPENMP] Initial parsing and sema analysis of 'taskyield' directive. llvm-svn: 213355
diff --git a/clang/lib/AST/StmtProfile.cpp b/clang/lib/AST/StmtProfile.cpp index c4289df..a4943bf 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp
@@ -407,6 +407,10 @@ VisitOMPExecutableDirective(S); } +void StmtProfiler::VisitOMPTaskyieldDirective(const OMPTaskyieldDirective *S) { + VisitOMPExecutableDirective(S); +} + void StmtProfiler::VisitExpr(const Expr *S) { VisitStmt(S); }