diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2019-10-25 10:27:13 -0400 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2019-10-30 10:23:33 -0400 |
commit | 14a388f43bbdfac304a1a117731ac5a27fdab61e (patch) | |
tree | bc247661b21e63f33dd297dd26dac0e4f7bb9fbf /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 67474c60d344a061d6c3affb70e7c8a13c15f830 (diff) | |
download | bcm5719-llvm-14a388f43bbdfac304a1a117731ac5a27fdab61e.tar.gz bcm5719-llvm-14a388f43bbdfac304a1a117731ac5a27fdab61e.zip |
[OPENMP50]Add support for parallel master taskloop simd directive.
Added full support for parallel master taskloop simd directive.
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 2c20ba4e6b6..5c3d1764fad 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -3160,6 +3160,8 @@ public: EmitOMPMasterTaskLoopSimdDirective(const OMPMasterTaskLoopSimdDirective &S); void EmitOMPParallelMasterTaskLoopDirective( const OMPParallelMasterTaskLoopDirective &S); + void EmitOMPParallelMasterTaskLoopSimdDirective( + const OMPParallelMasterTaskLoopSimdDirective &S); void EmitOMPDistributeDirective(const OMPDistributeDirective &S); void EmitOMPDistributeParallelForDirective( const OMPDistributeParallelForDirective &S); |