This patch fixes a bug from D89802. For example, without it, Clang
generates x as the debug map name for both x and y in the following
example:
#pragma omp target map(to: x, y) x = y = 1;
Paths
| Differential D101564
[OpenMP] Fix second debug name from map clause ClosedPublic Authored by jdenny on Apr 29 2021, 1:02 PM.
Details Summary This patch fixes a bug from D89802. For example, without it, Clang #pragma omp target map(to: x, y) x = y = 1;
Diff Detail
Event TimelineThis revision is now accepted and ready to land.Apr 29 2021, 1:30 PM Closed by commit rG82e99f50351d: [OpenMP] Fix second debug name from map clause (authored by jdenny). · Explain WhyApr 30 2021, 1:28 PM This revision was automatically updated to reflect the committed changes.
Revision Contents
Diff 342023 clang/lib/CodeGen/CGOpenMPRuntime.cpp
clang/test/OpenMP/target_map_names.cpp
|