diff options
author | Kelvin Li <kkwli0@gmail.com> | 2016-11-30 23:51:03 +0000 |
---|---|---|
committer | Kelvin Li <kkwli0@gmail.com> | 2016-11-30 23:51:03 +0000 |
commit | 579e41ced22fe784060d07b9395f58f5c2f7ad0d (patch) | |
tree | b9e8ddf914f542f4917133564497313cfb83ae1f /clang/lib/CodeGen/CodeGenFunction.h | |
parent | ed14cb060420040e712ff159058e53c62a7326a0 (diff) | |
download | bcm5719-llvm-579e41ced22fe784060d07b9395f58f5c2f7ad0d.tar.gz bcm5719-llvm-579e41ced22fe784060d07b9395f58f5c2f7ad0d.zip |
[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
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 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<llvm::Function * /*OutlinedFn*/, |