From: Anders Carlsson Date: Wed, 24 Nov 2010 21:53:50 +0000 (+0000) Subject: Simplify code. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8a9dc4fcde8583b0c4389d5a43b88820adbd3022;p=clang Simplify code. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120118 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/ItaniumCXXABI.cpp b/lib/CodeGen/ItaniumCXXABI.cpp index 839e0476d4..99575dfc8f 100644 --- a/lib/CodeGen/ItaniumCXXABI.cpp +++ b/lib/CodeGen/ItaniumCXXABI.cpp @@ -498,11 +498,9 @@ llvm::Constant *ItaniumCXXABI::EmitMemberPointer(const FieldDecl *FD) { // A pointer to data member is an offset from the base address of // the class object containing it, represented as a ptrdiff_t - QualType ClassType = getContext().getTypeDeclType(FD->getParent()); - const llvm::StructType *ClassLTy = - cast(CGM.getTypes().ConvertType(ClassType)); - const CGRecordLayout &RL = CGM.getTypes().getCGRecordLayout(FD->getParent()); + const llvm::StructType *ClassLTy = RL.getLLVMType(); + unsigned FieldNo = RL.getLLVMFieldNo(FD); uint64_t Offset = CGM.getTargetData().getStructLayout(ClassLTy)->getElementOffset(FieldNo);