summaryrefslogtreecommitdiff
path: root/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
commit3b54d86f4f0bedfffb6305b6f12283f9c62682db (patch)
tree04730260ddc52d65d4452d6e651786058fd92015 /tools
parent11a33cee19725d88b474912665c72835db03a87f (diff)
downloadclang-3b54d86f4f0bedfffb6305b6f12283f9c62682db.tar.gz
clang-3b54d86f4f0bedfffb6305b6f12283f9c62682db.tar.bz2
clang-3b54d86f4f0bedfffb6305b6f12283f9c62682db.tar.xz
[OPENMP] Parsing and sema analysis for 'copyprivate' clause.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211886 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/libclang/CIndex.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/libclang/CIndex.cpp b/tools/libclang/CIndex.cpp
index 93cb0500df..78144d50e5 100644
--- a/tools/libclang/CIndex.cpp
+++ b/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) {