summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-08-18 00:13:52 +0000
committerChris Lattner <sabre@nondot.org>2010-08-18 00:13:52 +0000
commitaa94cc3fcd279beb31a2c3044a87458221ec2421 (patch)
tree0c8b575d36ad20917efb85dd626399e07bc11612 /clang/lib/CodeGen
parent86550b00381030ba3d3702fe203aeff16f1a3642 (diff)
downloadbcm5719-llvm-aa94cc3fcd279beb31a2c3044a87458221ec2421.tar.gz
bcm5719-llvm-aa94cc3fcd279beb31a2c3044a87458221ec2421.zip
fix typo
llvm-svn: 111334
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r--clang/lib/CodeGen/CGExpr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGExpr.cpp b/clang/lib/CodeGen/CGExpr.cpp
index 18ecf1719f2..4f797e7e10d 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;
}
OpenPOWER on IntegriCloud