diff options
author | Kelvin Li <kkwli0@gmail.com> | 2016-12-25 04:52:54 +0000 |
---|---|---|
committer | Kelvin Li <kkwli0@gmail.com> | 2016-12-25 04:52:54 +0000 |
commit | 83c451e9986e2d2ccd28395595465d69f0d4db6e (patch) | |
tree | 75c1356a97696a372040aaf0cf1364b8b9f1ee4c /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 690952d15e6e21cd42a7c99e0941dc983e608866 (diff) | |
download | bcm5719-llvm-83c451e9986e2d2ccd28395595465d69f0d4db6e.tar.gz bcm5719-llvm-83c451e9986e2d2ccd28395595465d69f0d4db6e.zip |
[OpenMP] Sema and parsing for 'target teams distribute' pragma
This patch is to implement sema and parsing for 'target teams distribute' pragma.
Differential Revision: https://reviews.llvm.org/D28015
llvm-svn: 290508
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 b78abdc1112..55fc8227132 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2695,6 +2695,8 @@ public: void EmitOMPTeamsDistributeParallelForDirective( const OMPTeamsDistributeParallelForDirective &S); void EmitOMPTargetTeamsDirective(const OMPTargetTeamsDirective &S); + void EmitOMPTargetTeamsDistributeDirective( + const OMPTargetTeamsDistributeDirective &S); /// Emit outlined function for the target directive. static std::pair<llvm::Function * /*OutlinedFn*/, |