llvm-svn: 111334
This commit is contained in:
Chris Lattner 2010-08-18 00:13:52 +00:00
parent 86550b0038
commit aa94cc3fcd
1 changed files with 1 additions and 1 deletions

View File

@ -1938,7 +1938,7 @@ LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) {
if (!hasAggregateLLVMType(E->getType())) {
// Emit the LHS as an l-value.
LValue LV = EmitLValue(E->getLHS());
// Sore the value through the l-value.
// Store the value through the l-value.
EmitStoreThroughLValue(EmitAnyExpr(E->getRHS()), LV, E->getType());
return LV;
}