summaryrefslogtreecommitdiffstats
path: root/clang/tools
diff options
context:
space:
mode:
authorAlexey Bataev <a.bataev@hotmail.com>2014-06-27 10:37:06 +0000
committerAlexey Bataev <a.bataev@hotmail.com>2014-06-27 10:37:06 +0000
commitbae9a793fdf7d2dfa829eb98ed8c601680d24343 (patch)
treeffcf19517a1ca02324d7c50f84d71c1a181a7b5d /clang/tools
parent8f1f87c73487dcb83cf5d6d44b062f1e9796fae6 (diff)
downloadbcm5719-llvm-bae9a793fdf7d2dfa829eb98ed8c601680d24343.tar.gz
bcm5719-llvm-bae9a793fdf7d2dfa829eb98ed8c601680d24343.zip
[OPENMP] Parsing and sema analysis for 'copyprivate' clause.
llvm-svn: 211886
Diffstat (limited to 'clang/tools')
-rw-r--r--clang/tools/libclang/CIndex.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/tools/libclang/CIndex.cpp b/clang/tools/libclang/CIndex.cpp
index 93cb0500df8..78144d50e50 100644
--- a/clang/tools/libclang/CIndex.cpp
+++ b/clang/tools/libclang/CIndex.cpp
@@ -1989,6 +1989,10 @@ void OMPClauseEnqueue::VisitOMPAlignedClause(const OMPAlignedClause *C) {
void OMPClauseEnqueue::VisitOMPCopyinClause(const OMPCopyinClause *C) {
VisitOMPClauseList(C);
}
+void
+OMPClauseEnqueue::VisitOMPCopyprivateClause(const OMPCopyprivateClause *C) {
+ VisitOMPClauseList(C);
+}
}
void EnqueueVisitor::EnqueueChildren(const OMPClause *S) {
OpenPOWER on IntegriCloud