diff options
Diffstat (limited to 'clang/lib/AST/ByteCode/Pointer.cpp')
-rw-r--r-- | clang/lib/AST/ByteCode/Pointer.cpp | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/clang/lib/AST/ByteCode/Pointer.cpp b/clang/lib/AST/ByteCode/Pointer.cpp index f0b0384..0ad4764 100644 --- a/clang/lib/AST/ByteCode/Pointer.cpp +++ b/clang/lib/AST/ByteCode/Pointer.cpp @@ -176,19 +176,8 @@ APValue Pointer::toAPValue(const ASTContext &ASTCtx) const { if (const auto *VD = Desc->asValueDecl()) Base = VD; else if (const auto *E = Desc->asExpr()) { - // Create a DynamicAlloc base of the right type. - if (const auto *NewExpr = dyn_cast<CXXNewExpr>(E)) { - QualType AllocatedType; - if (NewExpr->isArray()) { - assert(Desc->isArray()); - APInt ArraySize(64, static_cast<uint64_t>(Desc->getNumElems()), - /*IsSigned=*/false); - AllocatedType = - ASTCtx.getConstantArrayType(NewExpr->getAllocatedType(), ArraySize, - nullptr, ArraySizeModifier::Normal, 0); - } else { - AllocatedType = NewExpr->getAllocatedType(); - } + if (block()->isDynamic()) { + QualType AllocatedType = getDeclPtr().getFieldDesc()->getDataType(ASTCtx); // FIXME: Suboptimal counting of dynamic allocations. Move this to Context // or InterpState? static int ReportedDynamicAllocs = 0; |