================ @@ -0,0 +1,26 @@ +#include "llvm/ABI/ABIInfo.h" + +using namespace llvm::abi; +bool ABIInfo::isAggregateTypeForABI(const Type *Ty) const { + // Member pointers are always aggregates + if (Ty->isMemberPointer()) ---------------- nikic wrote:
I think this doesn't have to be explicitly checked and is the result of the following condition? https://github.com/llvm/llvm-project/pull/140112 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits