[clang][Interp][NFC] Fix getting the record decl from a pointer type
diff --git a/clang/lib/AST/Interp/Compiler.cpp b/clang/lib/AST/Interp/Compiler.cpp index 0455eec..58a0852 100644 --- a/clang/lib/AST/Interp/Compiler.cpp +++ b/clang/lib/AST/Interp/Compiler.cpp
@@ -5281,8 +5281,8 @@ unsigned Compiler<Emitter>::collectBaseOffset(const QualType BaseType, const QualType DerivedType) { const auto extractRecordDecl = [](QualType Ty) -> const CXXRecordDecl * { - if (const auto *PT = dyn_cast<PointerType>(Ty)) - return PT->getPointeeType()->getAsCXXRecordDecl(); + if (const auto *R = Ty->getPointeeCXXRecordDecl()) + return R; return Ty->getAsCXXRecordDecl(); }; const CXXRecordDecl *BaseDecl = extractRecordDecl(BaseType);