diff options
author | Chris Lattner <sabre@nondot.org> | 2010-08-18 00:13:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-08-18 00:13:52 +0000 |
commit | aa94cc3fcd279beb31a2c3044a87458221ec2421 (patch) | |
tree | 0c8b575d36ad20917efb85dd626399e07bc11612 /clang/lib/CodeGen | |
parent | 86550b00381030ba3d3702fe203aeff16f1a3642 (diff) | |
download | bcm5719-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.cpp | 2 |
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; } |