diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-03-31 03:36:38 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-03-31 03:36:38 +0000 |
commit | d48bcd8a4693b4adedd1db4be64a6998d490fa9a (patch) | |
tree | 74e5c8eb6bb796ab67ab519ddbc8362fc1f1c6a8 /clang/lib/AST/StmtProfile.cpp | |
parent | 79cfed55fc923b137a1a41702534b6830c4f5851 (diff) | |
download | bcm5719-llvm-d48bcd8a4693b4adedd1db4be64a6998d490fa9a.tar.gz bcm5719-llvm-d48bcd8a4693b4adedd1db4be64a6998d490fa9a.zip |
[OPENMP] Implemented 'copyin' clause
llvm-svn: 205164
Diffstat (limited to 'clang/lib/AST/StmtProfile.cpp')
-rw-r--r-- | clang/lib/AST/StmtProfile.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/AST/StmtProfile.cpp b/clang/lib/AST/StmtProfile.cpp index 9fc4c77e2c5..07ed86a91cd 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp @@ -297,6 +297,9 @@ void OMPClauseProfiler::VisitOMPFirstprivateClause( void OMPClauseProfiler::VisitOMPSharedClause(const OMPSharedClause *C) { VisitOMPClauseList(C); } +void OMPClauseProfiler::VisitOMPCopyinClause(const OMPCopyinClause *C) { + VisitOMPClauseList(C); +} } void |