diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-06-27 10:37:06 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-06-27 10:37:06 +0000 |
commit | bae9a793fdf7d2dfa829eb98ed8c601680d24343 (patch) | |
tree | ffcf19517a1ca02324d7c50f84d71c1a181a7b5d /clang/lib/AST/StmtProfile.cpp | |
parent | 8f1f87c73487dcb83cf5d6d44b062f1e9796fae6 (diff) | |
download | bcm5719-llvm-bae9a793fdf7d2dfa829eb98ed8c601680d24343.tar.gz bcm5719-llvm-bae9a793fdf7d2dfa829eb98ed8c601680d24343.zip |
[OPENMP] Parsing and sema analysis for 'copyprivate' clause.
llvm-svn: 211886
Diffstat (limited to 'clang/lib/AST/StmtProfile.cpp')
-rw-r--r-- | clang/lib/AST/StmtProfile.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/AST/StmtProfile.cpp b/clang/lib/AST/StmtProfile.cpp index f3f3c7ba8e6..f562ed6aa76 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp @@ -335,6 +335,10 @@ void OMPClauseProfiler::VisitOMPAlignedClause(const OMPAlignedClause *C) { void OMPClauseProfiler::VisitOMPCopyinClause(const OMPCopyinClause *C) { VisitOMPClauseList(C); } +void +OMPClauseProfiler::VisitOMPCopyprivateClause(const OMPCopyprivateClause *C) { + VisitOMPClauseList(C); +} } void |