diff options
author | Anders Carlsson <andersca@mac.com> | 2010-01-29 05:24:29 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-01-29 05:24:29 +0000 |
commit | db78f0ad046e1dfb79ed03fbe8b1d1a2c18616fb (patch) | |
tree | d1cf0ae31f0bb5d6c5e0cdccc6974c5bcdfea547 /clang/lib/CodeGen/CGClass.cpp | |
parent | 5d8645b150a6c1421b82ad93ab7e316e454a2708 (diff) | |
download | bcm5719-llvm-db78f0ad046e1dfb79ed03fbe8b1d1a2c18616fb.tar.gz bcm5719-llvm-db78f0ad046e1dfb79ed03fbe8b1d1a2c18616fb.zip |
Add a new EmitLValueForFieldInitialization that will be used for initializing fields (and reference type fields in particular).
llvm-svn: 94799
Diffstat (limited to 'clang/lib/CodeGen/CGClass.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGClass.cpp | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/clang/lib/CodeGen/CGClass.cpp b/clang/lib/CodeGen/CGClass.cpp index 2af3a15cdb6..7e78e7df52e 100644 --- a/clang/lib/CodeGen/CGClass.cpp +++ b/clang/lib/CodeGen/CGClass.cpp @@ -846,17 +846,8 @@ static void EmitMemberInitializer(CodeGenFunction &CGF, QualType FieldType = CGF.getContext().getCanonicalType(Field->getType()); llvm::Value *ThisPtr = CGF.LoadCXXThis(); - LValue LHS; - if (FieldType->isReferenceType()) { - // FIXME: This is really ugly; should be refactored somehow - unsigned idx = CGF.CGM.getTypes().getLLVMFieldNo(Field); - llvm::Value *V = CGF.Builder.CreateStructGEP(ThisPtr, idx, "tmp"); - assert(!FieldType.getObjCGCAttr() && "fields cannot have GC attrs"); - LHS = LValue::MakeAddr(V, CGF.MakeQualifiers(FieldType)); - } else { - LHS = CGF.EmitLValueForField(ThisPtr, Field, 0); - } - + LValue LHS = CGF.EmitLValueForFieldInitialization(ThisPtr, Field, 0); + // If we are initializing an anonymous union field, drill down to the field. if (MemberInit->getAnonUnionMember()) { Field = MemberInit->getAnonUnionMember(); |