Re: [PATCH] D17368: [OpenMP] Code generation for target enter data directive

2016-04-27 Thread Samuel Antao via cfe-commits
sfantao updated this revision to Diff 55349. sfantao added a comment. - Rebase. http://reviews.llvm.org/D17368 Files: lib/CodeGen/CGOpenMPRuntime.cpp lib/CodeGen/CGOpenMPRuntime.h lib/CodeGen/CGStmtOpenMP.cpp test/OpenMP/target_enter_data_codegen.cpp Index: test/OpenMP/target_enter_dat

Re: [PATCH] D17368: [OpenMP] Code generation for target enter data directive

2016-02-26 Thread Samuel Antao via cfe-commits
sfantao updated this revision to Diff 49247. sfantao marked 2 inline comments as done. sfantao added a comment. Remove extra braces. Waiting on dependency. http://reviews.llvm.org/D17368 Files: lib/CodeGen/CGOpenMPRuntime.cpp lib/CodeGen/CGOpenMPRuntime.h lib/CodeGen/CGStmtOpenMP.cpp t

Re: [PATCH] D17368: [OpenMP] Code generation for target enter data directive

2016-02-25 Thread Alexey Bataev via cfe-commits
ABataev accepted this revision. ABataev added a comment. This revision is now accepted and ready to land. LG Comment at: lib/CodeGen/CGStmtOpenMP.cpp:2758-2760 @@ +2757,5 @@ + const Expr *IfCond = nullptr; + if (auto *C = S.getSingleClause()) { +IfCond = C->getCondition();

Re: [PATCH] D17368: [OpenMP] Code generation for target enter data directive

2016-02-23 Thread Samuel Antao via cfe-commits
sfantao updated this revision to Diff 48834. sfantao added a comment. Rebase. http://reviews.llvm.org/D17368 Files: lib/CodeGen/CGOpenMPRuntime.cpp lib/CodeGen/CGOpenMPRuntime.h lib/CodeGen/CGStmtOpenMP.cpp test/OpenMP/target_enter_data_codegen.cpp Index: test/OpenMP/target_enter_data_

[PATCH] D17368: [OpenMP] Code generation for target enter data directive

2016-02-17 Thread Samuel Antao via cfe-commits
sfantao created this revision. sfantao added reviewers: ABataev, hfinkel, carlo.bertolli, arpith-jacob, kkwli0. sfantao added subscribers: caomhin, fraggamuffin, cfe-commits. This patch adds support for the target enter data directive code generation. http://reviews.llvm.org/D17368 Files: lib/