From 579e41ced22fe784060d07b9395f58f5c2f7ad0d Mon Sep 17 00:00:00 2001 From: Kelvin Li Date: Wed, 30 Nov 2016 23:51:03 +0000 Subject: [OpenMP] Sema and parsing for 'teams distribute parallel for simd' pragma This patch is to implement sema and parsing for 'teams distribute parallel for simd' pragma. Differential Revision: https://reviews.llvm.org/D27084 llvm-svn: 288294 --- clang/lib/CodeGen/CodeGenFunction.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'clang/lib/CodeGen/CodeGenFunction.h') diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index b53287d41ff..3279c8cad60 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2631,6 +2631,8 @@ public: void EmitOMPTeamsDistributeDirective(const OMPTeamsDistributeDirective &S); void EmitOMPTeamsDistributeSimdDirective(const OMPTeamsDistributeSimdDirective &S); + void EmitOMPTeamsDistributeParallelForSimdDirective( + const OMPTeamsDistributeParallelForSimdDirective &S); /// Emit outlined function for the target directive. static std::pair