From ec172c6da02111b2e1150b3bd94578789d4fbd14 Mon Sep 17 00:00:00 2001 From: Samuel Antao Date: Thu, 26 May 2016 17:49:04 +0000 Subject: [OpenMP] Parsing and sema support for the from clause Summary: The patch contains the parsing and sema support for the `from` clause. Patch based on the original post by Kelvin Li. Reviewers: hfinkel, carlo.bertolli, kkwli0, arpith-jacob, ABataev Subscribers: caomhin, cfe-commits Differential Revision: http://reviews.llvm.org/D18488 llvm-svn: 270882 --- clang/tools/libclang/CIndex.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'clang/tools/libclang/CIndex.cpp') diff --git a/clang/tools/libclang/CIndex.cpp b/clang/tools/libclang/CIndex.cpp index 29e47fc6600..78df3ce264c 100644 --- a/clang/tools/libclang/CIndex.cpp +++ b/clang/tools/libclang/CIndex.cpp @@ -2249,6 +2249,9 @@ void OMPClauseEnqueue::VisitOMPDefaultmapClause( void OMPClauseEnqueue::VisitOMPToClause(const OMPToClause *C) { VisitOMPClauseList(C); } +void OMPClauseEnqueue::VisitOMPFromClause(const OMPFromClause *C) { + VisitOMPClauseList(C); +} } void EnqueueVisitor::EnqueueChildren(const OMPClause *S) { -- cgit v1.2.3