]> granicus.if.org Git - clang/commitdiff
fix typo
authorChris Lattner <sabre@nondot.org>
Wed, 18 Aug 2010 00:13:52 +0000 (00:13 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 18 Aug 2010 00:13:52 +0000 (00:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111334 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGExpr.cpp

index 18ecf1719f2cd25959ab16ee77a0a78bec5384b5..4f797e7e10dbdd93f3205b0a18d9f568ed3b59e5 100644 (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;
   }