diff options
| author | Arpith Chacko Jacob <acjacob@us.ibm.com> | 2016-02-03 15:46:42 +0000 |
|---|---|---|
| committer | Arpith Chacko Jacob <acjacob@us.ibm.com> | 2016-02-03 15:46:42 +0000 |
| commit | 05bebb578a54774d9fc530600157dcf8bbd09532 (patch) | |
| tree | 47f8b62ccca6d89437e7dbeeddb0f231bab50ebf /clang/lib/CodeGen/CodeGenFunction.h | |
| parent | 23aea0d5d056d51070dc68ce609ee3c5b6eb5a38 (diff) | |
| download | bcm5719-llvm-05bebb578a54774d9fc530600157dcf8bbd09532.tar.gz bcm5719-llvm-05bebb578a54774d9fc530600157dcf8bbd09532.zip | |
[OpenMP] Parsing + sema for target parallel for directive.
Summary:
This patch adds parsing + sema for the target parallel for directive along with testcases.
Reviewers: ABataev
Differential Revision: http://reviews.llvm.org/D16759
llvm-svn: 259654
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 fa1ceebc34f..def41d28f85 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2344,6 +2344,8 @@ public: void EmitOMPTargetEnterDataDirective(const OMPTargetEnterDataDirective &S); void EmitOMPTargetExitDataDirective(const OMPTargetExitDataDirective &S); void EmitOMPTargetParallelDirective(const OMPTargetParallelDirective &S); + void + EmitOMPTargetParallelForDirective(const OMPTargetParallelForDirective &S); void EmitOMPTeamsDirective(const OMPTeamsDirective &S); void EmitOMPCancellationPointDirective(const OMPCancellationPointDirective &S); |

