From aa94cc3fcd279beb31a2c3044a87458221ec2421 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 18 Aug 2010 00:13:52 +0000 Subject: [PATCH] fix typo llvm-svn: 111334 --- clang/lib/CodeGen/CGExpr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/CodeGen/CGExpr.cpp b/clang/lib/CodeGen/CGExpr.cpp index 18ecf1719f2c..4f797e7e10db 100644 --- a/clang/lib/CodeGen/CGExpr.cpp +++ b/clang/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; }