diff options
author | Kelvin Li <kkwli0@gmail.com> | 2017-01-03 05:23:48 +0000 |
---|---|---|
committer | Kelvin Li <kkwli0@gmail.com> | 2017-01-03 05:23:48 +0000 |
commit | 1851df563d08a23ce2b4f5a7bd717df1ed7ba86a (patch) | |
tree | 73fd3fa4ad709d30f67032a26b83961da847d124 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 7c030a2d91976562dc3d6563838c04561cec85ba (diff) | |
download | bcm5719-llvm-1851df563d08a23ce2b4f5a7bd717df1ed7ba86a.tar.gz bcm5719-llvm-1851df563d08a23ce2b4f5a7bd717df1ed7ba86a.zip |
[OpenMP] Sema and parsing for 'target teams distribute parallel for simd’ pragma
This patch is to implement sema and parsing for 'target teams distribute parallel for simd’ pragma.
Differential Revision: https://reviews.llvm.org/D28202
llvm-svn: 290862
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 222d0e97968..acf8863b580 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2699,6 +2699,8 @@ public: const OMPTargetTeamsDistributeDirective &S); void EmitOMPTargetTeamsDistributeParallelForDirective( const OMPTargetTeamsDistributeParallelForDirective &S); + void EmitOMPTargetTeamsDistributeParallelForSimdDirective( + const OMPTargetTeamsDistributeParallelForSimdDirective &S); /// Emit outlined function for the target directive. static std::pair<llvm::Function * /*OutlinedFn*/, |