[clang] [llvm] [Clang][OpenMP] This is addition fix for #92210. (PR #94802)

Alexey Bataev via cfe-commits cfe-commits at lists.llvm.org
Wed Jul 3 12:41:09 PDT 2024


================
@@ -8025,6 +8025,19 @@ class MappableExprsHandler {
       MapCombinedInfoTy StructBaseCurInfo;
       const Decl *D = Data.first;
       const ValueDecl *VD = cast_or_null<ValueDecl>(D);
+      bool HasMapBasePtr = false;
+      bool HasMapArraySec = false;
+      for (const auto &M : Data.second) {
----------------
alexey-bataev wrote:

```suggestion
      if (VD && VD->getType()->isAnyPointerType()) {
        for (const auto &M : Data.second) {
```

https://github.com/llvm/llvm-project/pull/94802


More information about the cfe-commits mailing list