[PATCH] D72811: [WIP][OPENMP5.0] allow lvalue for motion clause
Chi Chun Chen via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Jan 15 14:52:48 PST 2020
cchen created this revision.
cchen added a reviewer: ABataev.
Herald added subscribers: cfe-commits, guansong.
Herald added a reviewer: jdoerfert.
Herald added a project: clang.
In OpenMP 5.0 we allow:
int *p;
int **p;
struct S {
int struct *sp;
double *d;
struct S **sp_arr;
};
struct S *s;
Now only add test for motion clause, after the implementation is fine,
will add test for map since the core logic is in the same helper
function.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D72811
Files:
clang/lib/CodeGen/CGOpenMPRuntime.cpp
clang/lib/Sema/SemaOpenMP.cpp
clang/test/OpenMP/target_map_messages.cpp
clang/test/OpenMP/target_teams_map_messages.cpp
clang/test/OpenMP/target_update_codegen.cpp
clang/test/OpenMP/target_update_from_messages.cpp
clang/test/OpenMP/target_update_to_messages.cpp
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D72811.238374.patch
Type: text/x-patch
Size: 42718 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20200115/ea5e4242/attachment-0001.bin>
More information about the cfe-commits
mailing list