diff options
author | Samuel Antao <sfantao@us.ibm.com> | 2016-01-19 19:15:56 +0000 |
---|---|---|
committer | Samuel Antao <sfantao@us.ibm.com> | 2016-01-19 19:15:56 +0000 |
commit | df67fc468eb34e9fc8b79be8f55fada8322eaadd (patch) | |
tree | c5aaa5155699d7126c274ff80debf90be84e7d66 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 251cf1336ae7b670991dcb1499d8b6b52864cf7b (diff) | |
download | llvm-df67fc468eb34e9fc8b79be8f55fada8322eaadd.zip llvm-df67fc468eb34e9fc8b79be8f55fada8322eaadd.tar.gz llvm-df67fc468eb34e9fc8b79be8f55fada8322eaadd.tar.bz2 |
[OpenMP] Parsing + sema for "target enter data" directive.
Patch by Arpith Jacob. Thanks!
llvm-svn: 258165
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 3dc0f35..d1cf0c9 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2336,6 +2336,7 @@ public: void EmitOMPAtomicDirective(const OMPAtomicDirective &S); void EmitOMPTargetDirective(const OMPTargetDirective &S); void EmitOMPTargetDataDirective(const OMPTargetDataDirective &S); + void EmitOMPTargetEnterDataDirective(const OMPTargetEnterDataDirective &S); void EmitOMPTeamsDirective(const OMPTeamsDirective &S); void EmitOMPCancellationPointDirective(const OMPCancellationPointDirective &S); |