[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 11:25:41 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) {
+ for (const MapInfo &L : M) {
+ const Expr *E = L.VarRef;
+ if (VD && E && VD->getType()->isAnyPointerType() &&
+ isa<DeclRefExpr>(E))
+ HasMapBasePtr = true;
+ if (VD && E && VD->getType()->isAnyPointerType() &&
+ (isa<ArraySectionExpr>(E) || isa<ArraySubscriptExpr>(E)))
----------------
alexey-bataev wrote:
```suggestion
if (VD && VD->getType()->isAnyPointerType() &&
isa_and_present<ArraySectionExpr, ArraySubscriptExpr>(E))
```
https://github.com/llvm/llvm-project/pull/94802
More information about the cfe-commits
mailing list