From bf87624a623ca6de8a2bd864921e129fb848fff6 Mon Sep 17 00:00:00 2001 From: Alexander Musman Date: Wed, 4 Jun 2014 13:06:39 +0000 Subject: =?UTF-8?q?[OPENMP]=20Parsing/Sema=20for=20OMPLasprivateClause.=20?= =?UTF-8?q?Parsing=20this=20clause,=20allowing=20it=20on=20directive=20?= =?UTF-8?q?=E2=80=98omp=20simd=E2=80=99=20and=20semantic=20checks.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@210184 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/libclang/CIndex.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tools') diff --git a/tools/libclang/CIndex.cpp b/tools/libclang/CIndex.cpp index bf54fb9376..9c35631625 100644 --- a/tools/libclang/CIndex.cpp +++ b/tools/libclang/CIndex.cpp @@ -1956,6 +1956,10 @@ void OMPClauseEnqueue::VisitOMPFirstprivateClause( const OMPFirstprivateClause *C) { VisitOMPClauseList(C); } +void OMPClauseEnqueue::VisitOMPLastprivateClause( + const OMPLastprivateClause *C) { + VisitOMPClauseList(C); +} void OMPClauseEnqueue::VisitOMPSharedClause(const OMPSharedClause *C) { VisitOMPClauseList(C); } -- cgit v1.2.3