diff options
author | Kelvin Li <kkwli0@gmail.com> | 2016-07-14 02:54:56 +0000 |
---|---|---|
committer | Kelvin Li <kkwli0@gmail.com> | 2016-07-14 02:54:56 +0000 |
commit | a579b9196c6eaa1e2a52832e8d0025eaf6160efa (patch) | |
tree | b79099a091e831e165b0e8f19dad2eb29a0fa743 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 0bd882295413a2b00a5cc4db712bcf7dddf117b6 (diff) | |
download | llvm-a579b9196c6eaa1e2a52832e8d0025eaf6160efa.zip llvm-a579b9196c6eaa1e2a52832e8d0025eaf6160efa.tar.gz llvm-a579b9196c6eaa1e2a52832e8d0025eaf6160efa.tar.bz2 |
[OpenMP] Sema and parsing for 'target parallel for simd' pragma
This patch is to implement sema and parsing for 'target parallel for simd' pragma.
Differential Revision: http://reviews.llvm.org/D22096
llvm-svn: 275365
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 08a3b30..45068fa 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2506,6 +2506,8 @@ public: void EmitOMPDistributeParallelForSimdDirective( const OMPDistributeParallelForSimdDirective &S); void EmitOMPDistributeSimdDirective(const OMPDistributeSimdDirective &S); + void EmitOMPTargetParallelForSimdDirective( + const OMPTargetParallelForSimdDirective &S); /// Emit outlined function for the target directive. static std::pair<llvm::Function * /*OutlinedFn*/, |