diff options
author | CHANDRA GHALE <chandra.nitdgp@gmail.com> | 2025-01-09 16:38:36 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-09 16:38:36 +0530 |
commit | aedb30fdc7cf83290b0f0d4246cf94fd62be749b (patch) | |
tree | c378f431a9e7250f981a6165ba94ef854509b727 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 703e2d5a19916525eb294d6bb899fbfd1655594f (diff) | |
download | llvm-aedb30fdc7cf83290b0f0d4246cf94fd62be749b.zip llvm-aedb30fdc7cf83290b0f0d4246cf94fd62be749b.tar.gz llvm-aedb30fdc7cf83290b0f0d4246cf94fd62be749b.tar.bz2 |
[OpenMP] codegen support for masked combined construct parallel masked taskloop (#121741)
Added codegen support for combined masked constructs Parallel masked
taskloop.
Added implementation for EmitOMPParallelMaskedTaskLoopDirective.
---------
Co-authored-by: Chandra Ghale <ghale@pe31.hpc.amslabs.hpecorp.net>
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 e2dc0b1..457e147 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -3874,6 +3874,8 @@ public: EmitOMPMasterTaskLoopSimdDirective(const OMPMasterTaskLoopSimdDirective &S); void EmitOMPParallelMasterTaskLoopDirective( const OMPParallelMasterTaskLoopDirective &S); + void EmitOMPParallelMaskedTaskLoopDirective( + const OMPParallelMaskedTaskLoopDirective &S); void EmitOMPParallelMasterTaskLoopSimdDirective( const OMPParallelMasterTaskLoopSimdDirective &S); void EmitOMPDistributeDirective(const OMPDistributeDirective &S); |