diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-17 12:47:03 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-17 12:47:03 +0000 |
commit | 74ba3a5880e539e1a4641fcba7a2509fecb383e6 (patch) | |
tree | 9a78d60976a6cbb00b0b00af3c0d07c9ab1ea9df /clang/lib/AST/StmtProfile.cpp | |
parent | 28d7b026873670ff533bf250a72125bce25af84d (diff) | |
download | bcm5719-llvm-74ba3a5880e539e1a4641fcba7a2509fecb383e6.tar.gz bcm5719-llvm-74ba3a5880e539e1a4641fcba7a2509fecb383e6.zip |
[OPENMP] Initial parsing and sema analysis of 'mergeable' clause.
llvm-svn: 213262
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 b17551cd407..c4289dffba0 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp @@ -308,6 +308,8 @@ void OMPClauseProfiler::VisitOMPNowaitClause(const OMPNowaitClause *) {} void OMPClauseProfiler::VisitOMPUntiedClause(const OMPUntiedClause *) {} +void OMPClauseProfiler::VisitOMPMergeableClause(const OMPMergeableClause *) {} + template<typename T> void OMPClauseProfiler::VisitOMPClauseList(T *Node) { for (auto *I : Node->varlists()) |