From: Chris Lattner Date: Wed, 18 Aug 2010 00:13:52 +0000 (+0000) Subject: fix typo X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5990b5455b5e309a029a6a44889ded4e9d549f24;p=clang fix typo git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111334 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGExpr.cpp b/lib/CodeGen/CGExpr.cpp index 18ecf1719f..4f797e7e10 100644 --- a/lib/CodeGen/CGExpr.cpp +++ b/lib/CodeGen/CGExpr.cpp @@ -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; }