[Openmp-commits] [PATCH] D105990: [OpenMP][NFC] Simplify targetDataEnd conditions for CopyMember
Joel E. Denny via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Fri Aug 6 14:46:43 PDT 2021
jdenny updated this revision to Diff 364886.
jdenny added a comment.
Rebased.
I'm working on the suggested changes for a separate patch. However, seeing D104555 <https://reviews.llvm.org/D104555>'s changes to related code in targetDataBegin, I wonder if there's another patch out there that's about to rewrite this code in targetDataEnd too.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D105990/new/
https://reviews.llvm.org/D105990
Files:
openmp/libomptarget/src/omptarget.cpp
Index: openmp/libomptarget/src/omptarget.cpp
===================================================================
--- openmp/libomptarget/src/omptarget.cpp
+++ openmp/libomptarget/src/omptarget.cpp
@@ -738,9 +738,8 @@
bool CopyMember = false;
if (!(PM->RTLs.RequiresFlags & OMP_REQ_UNIFIED_SHARED_MEMORY) ||
HasCloseModifier) {
- if ((ArgTypes[I] & OMP_TGT_MAPTYPE_MEMBER_OF) &&
- !(ArgTypes[I] & OMP_TGT_MAPTYPE_PTR_AND_OBJ))
- CopyMember = IsLast;
+ if (IsLast)
+ CopyMember = true;
}
if ((DelEntry || Always || CopyMember) &&
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D105990.364886.patch
Type: text/x-patch
Size: 632 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20210806/774693cc/attachment.bin>
More information about the Openmp-commits
mailing list