diff options
author | Anders Carlsson <andersca@mac.com> | 2009-10-19 18:28:22 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-10-19 18:28:22 +0000 |
commit | 86aa0cdfd5aa7b099efbcd612a014d1b5f0ff799 (patch) | |
tree | ff070cc8b76e27bbc7df81679aff813f50da53b0 | |
parent | da921fd19fd496494365f9f2325c338e66216709 (diff) |
Handle emitting the assignment operator when the lhs is a reference. Fixes PR5227.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84518 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/CGExpr.cpp | 10 | ||||
-rw-r--r-- | test/CodeGenCXX/references.cpp | 6 |
2 files changed, 16 insertions, 0 deletions
diff --git a/lib/CodeGen/CGExpr.cpp b/lib/CodeGen/CGExpr.cpp index 6542aa50d2..29ca900ed3 100644 --- a/lib/CodeGen/CGExpr.cpp +++ b/lib/CodeGen/CGExpr.cpp @@ -1367,6 +1367,16 @@ LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) { if (E->getOpcode() != BinaryOperator::Assign) return EmitUnsupportedLValue(E, "binary l-value expression"); + if (!hasAggregateLLVMType(E->getType())) { + // Emit the LHS as an l-value. + LValue LV = EmitLValue(E->getLHS()); + + llvm::Value *RHS = EmitScalarExpr(E->getRHS()); + EmitStoreOfScalar(RHS, LV.getAddress(), LV.isVolatileQualified(), + E->getType()); + return LV; + } + llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType())); EmitAggExpr(E, Temp, false); // FIXME: Are these qualifiers correct? diff --git a/test/CodeGenCXX/references.cpp b/test/CodeGenCXX/references.cpp index 682aab310d..8e0e1cbe84 100644 --- a/test/CodeGenCXX/references.cpp +++ b/test/CodeGenCXX/references.cpp @@ -130,3 +130,9 @@ namespace T { } } +// PR5227. +namespace PR5227 { +void f(int &a) { + (a = 10) = 20; +} +} |