summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAlexey Bataev <a.bataev@hotmail.com>2014-06-20 09:44:06 +0000
committerAlexey Bataev <a.bataev@hotmail.com>2014-06-20 09:44:06 +0000
commit98a11d0048dc90a55b17398421988ee8be3480da (patch)
treeb9ed61705a72dd80d194cfa5ee5148561581e1df /tools
parent912088d40a7b0a0b2bddb641a7a583116126c68f (diff)
downloadclang-98a11d0048dc90a55b17398421988ee8be3480da.tar.gz
clang-98a11d0048dc90a55b17398421988ee8be3480da.tar.bz2
clang-98a11d0048dc90a55b17398421988ee8be3480da.tar.xz
[OPENMP] Initial support for 'ordered' clause.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211347 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/libclang/CIndex.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/libclang/CIndex.cpp b/tools/libclang/CIndex.cpp
index 0958634a28..85b20f343a 100644
--- a/tools/libclang/CIndex.cpp
+++ b/tools/libclang/CIndex.cpp
@@ -1949,6 +1949,8 @@ void OMPClauseEnqueue::VisitOMPScheduleClause(const OMPScheduleClause *C) {
Visitor->AddStmt(C->getChunkSize());
}
+void OMPClauseEnqueue::VisitOMPOrderedClause(const OMPOrderedClause *) {}
+
template<typename T>
void OMPClauseEnqueue::VisitOMPClauseList(T *Node) {
for (const auto *I : Node->varlists())