diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2012-08-08 03:51:37 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2012-08-08 03:51:37 +0000 |
commit | 859c65cdbe730fd0e940b71ab4ba4884d44a8298 (patch) | |
tree | d76eeb74554ee6e4266d3a27803c8aa322c35f15 /lib/CodeGen/CodeGenFunction.h | |
parent | 15631b4d354d7fe99ad018de82a9d636d4bd8e92 (diff) |
Fix an assertion failure with a C++ constructor initializing a
member of reference type in an anonymous struct. PR13154.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161473 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 697571bf1e..ed3e43beb0 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -2162,9 +2162,6 @@ public: llvm::Value *EmitIvarOffset(const ObjCInterfaceDecl *Interface, const ObjCIvarDecl *Ivar); - LValue EmitLValueForAnonRecordField(llvm::Value* Base, - const IndirectFieldDecl* Field, - unsigned CVRQualifiers); LValue EmitLValueForField(LValue Base, const FieldDecl* Field); /// EmitLValueForFieldInitialization - Like EmitLValueForField, except that |