diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-17 12:19:31 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-17 12:19:31 +0000 |
commit | 7aea99a310b5beca93abc8aa788b074175a95bcb (patch) | |
tree | 8dde97a13e8d381258d3b6041c3e73482996eae9 /clang/lib/AST/StmtProfile.cpp | |
parent | 9a2350e45950e13d3d3a0ff318c10912ffef9d32 (diff) | |
download | bcm5719-llvm-7aea99a310b5beca93abc8aa788b074175a95bcb.tar.gz bcm5719-llvm-7aea99a310b5beca93abc8aa788b074175a95bcb.zip |
[OPENMP] Initial support for parsing and sema analysis of 'untied' clause.
llvm-svn: 213257
Diffstat (limited to 'clang/lib/AST/StmtProfile.cpp')
-rw-r--r-- | clang/lib/AST/StmtProfile.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/AST/StmtProfile.cpp b/clang/lib/AST/StmtProfile.cpp index c45281f13f4..b17551cd407 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp @@ -306,6 +306,8 @@ void OMPClauseProfiler::VisitOMPOrderedClause(const OMPOrderedClause *) {} void OMPClauseProfiler::VisitOMPNowaitClause(const OMPNowaitClause *) {} +void OMPClauseProfiler::VisitOMPUntiedClause(const OMPUntiedClause *) {} + template<typename T> void OMPClauseProfiler::VisitOMPClauseList(T *Node) { for (auto *I : Node->varlists()) |