summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CGStmtOpenMP.cpp
diff options
context:
space:
mode:
authorSamuel Antao <sfantao@us.ibm.com>2016-01-19 20:04:50 +0000
committerSamuel Antao <sfantao@us.ibm.com>2016-01-19 20:04:50 +0000
commit725907603205e62fc02e2cfc40cdf3719774bf6f (patch)
tree4515b906368a389bc63fc7bff38b860c2165b266 /clang/lib/CodeGen/CGStmtOpenMP.cpp
parentd4af297df1b0dc442622494214c67fb4a9848d43 (diff)
downloadbcm5719-llvm-725907603205e62fc02e2cfc40cdf3719774bf6f.tar.gz
bcm5719-llvm-725907603205e62fc02e2cfc40cdf3719774bf6f.zip
[OpenMP] Parsing + sema for "target exit data" directive.
Patch by Arpith Jacob. Thanks! llvm-svn: 258177
Diffstat (limited to 'clang/lib/CodeGen/CGStmtOpenMP.cpp')
-rw-r--r--clang/lib/CodeGen/CGStmtOpenMP.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGStmtOpenMP.cpp b/clang/lib/CodeGen/CGStmtOpenMP.cpp
index f6b8e5907d4..793e1a97314 100644
--- a/clang/lib/CodeGen/CGStmtOpenMP.cpp
+++ b/clang/lib/CodeGen/CGStmtOpenMP.cpp
@@ -2666,6 +2666,11 @@ void CodeGenFunction::EmitOMPTargetEnterDataDirective(
// TODO: codegen for target enter data.
}
+void CodeGenFunction::EmitOMPTargetExitDataDirective(
+ const OMPTargetExitDataDirective &S) {
+ // TODO: codegen for target exit data.
+}
+
void CodeGenFunction::EmitOMPTaskLoopDirective(const OMPTaskLoopDirective &S) {
// emit the code inside the construct for now
auto CS = cast<CapturedStmt>(S.getAssociatedStmt());
OpenPOWER on IntegriCloud