aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorKelvin Li <kkwli0@gmail.com>2017-01-10 18:08:18 +0000
committerKelvin Li <kkwli0@gmail.com>2017-01-10 18:08:18 +0000
commitda681187299f90b567b0032c2f3e194abe802164 (patch)
tree2b16916f03089b0b02521f4d2cc1e67c0c5535a3 /clang/lib/CodeGen/CodeGenFunction.h
parent74b73e52f17bf71b15f29a9ba1f3cfa8fdcbc7b4 (diff)
downloadllvm-da681187299f90b567b0032c2f3e194abe802164.zip
llvm-da681187299f90b567b0032c2f3e194abe802164.tar.gz
llvm-da681187299f90b567b0032c2f3e194abe802164.tar.bz2
[OpenMP] Sema and parsing for 'target teams distribute simd’ pragma
This patch is to implement sema and parsing for 'target teams distribute simd’ pragma. Differential Revision: https://reviews.llvm.org/D28252 llvm-svn: 291579
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r--clang/lib/CodeGen/CodeGenFunction.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h
index 05522cd..5861340 100644
--- a/clang/lib/CodeGen/CodeGenFunction.h
+++ b/clang/lib/CodeGen/CodeGenFunction.h
@@ -2701,6 +2701,8 @@ public:
const OMPTargetTeamsDistributeParallelForDirective &S);
void EmitOMPTargetTeamsDistributeParallelForSimdDirective(
const OMPTargetTeamsDistributeParallelForSimdDirective &S);
+ void EmitOMPTargetTeamsDistributeSimdDirective(
+ const OMPTargetTeamsDistributeSimdDirective &S);
/// Emit outlined function for the target directive.
static std::pair<llvm::Function * /*OutlinedFn*/,