diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2019-10-18 16:47:35 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2019-10-18 16:47:35 +0000 |
commit | b8552abfe7ce0c4cd37d136bbcf8cb319a28f260 (patch) | |
tree | 9d8564667394f0f86888e46034f37dd822d9e5f8 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 7e1637451d20d40553165f806094ada30cb0a708 (diff) | |
download | bcm5719-llvm-b8552abfe7ce0c4cd37d136bbcf8cb319a28f260.tar.gz bcm5719-llvm-b8552abfe7ce0c4cd37d136bbcf8cb319a28f260.zip |
[OPENMP50]Add support for master taskloop simd.
Added trsing/semantics/codegen for combined construct master taskloop simd.
llvm-svn: 375255
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 ecdf6323a46..99bc85ba377 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -3156,6 +3156,8 @@ public: void EmitOMPTaskLoopDirective(const OMPTaskLoopDirective &S); void EmitOMPTaskLoopSimdDirective(const OMPTaskLoopSimdDirective &S); void EmitOMPMasterTaskLoopDirective(const OMPMasterTaskLoopDirective &S); + void + EmitOMPMasterTaskLoopSimdDirective(const OMPMasterTaskLoopSimdDirective &S); void EmitOMPParallelMasterTaskLoopDirective( const OMPParallelMasterTaskLoopDirective &S); void EmitOMPDistributeDirective(const OMPDistributeDirective &S); |