[cfe-commits] r111334 - /cfe/trunk/lib/CodeGen/CGExpr.cpp

Chris Lattner sabre at nondot.org
Tue Aug 17 17:13:52 PDT 2010


Author: lattner
Date: Tue Aug 17 19:13:52 2010
New Revision: 111334

URL: http://llvm.org/viewvc/llvm-project?rev=111334&view=rev
Log:
fix typo

Modified:
    cfe/trunk/lib/CodeGen/CGExpr.cpp

Modified: cfe/trunk/lib/CodeGen/CGExpr.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGExpr.cpp?rev=111334&r1=111333&r2=111334&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGExpr.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGExpr.cpp Tue Aug 17 19:13:52 2010
@@ -1938,7 +1938,7 @@
   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;
   }





More information about the cfe-commits mailing list