diff options
author | cchen <cchen@cray.com> | 2019-12-04 14:36:07 -0500 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2019-12-04 14:53:17 -0500 |
commit | 713dab21e27c987b9114547ce7136bac2e775de9 (patch) | |
tree | 696ff853d8c9db4fab6b73fbfcab6de0c4185d0d /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 9e978bb01ceae8eaa415d8951cc96803e68b73fb (diff) | |
download | bcm5719-llvm-713dab21e27c987b9114547ce7136bac2e775de9.tar.gz bcm5719-llvm-713dab21e27c987b9114547ce7136bac2e775de9.zip |
[OpenMP50] Add parallel master construct, by Chi Chun Chen.
Reviewers: ABataev, jdoerfert
Reviewed By: ABataev
Subscribers: jholewinski, guansong, arphaman, jfb, cfe-commits, sandoval, dreachem
Tags: #clang
Differential Revision: https://reviews.llvm.org/D70726
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 8f99b090b81..1439d92f0c4 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -3145,6 +3145,7 @@ public: void EmitOMPParallelForDirective(const OMPParallelForDirective &S); void EmitOMPParallelForSimdDirective(const OMPParallelForSimdDirective &S); void EmitOMPParallelSectionsDirective(const OMPParallelSectionsDirective &S); + void EmitOMPParallelMasterDirective(const OMPParallelMasterDirective &S); void EmitOMPTaskDirective(const OMPTaskDirective &S); void EmitOMPTaskyieldDirective(const OMPTaskyieldDirective &S); void EmitOMPBarrierDirective(const OMPBarrierDirective &S); |