diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-02-12 21:23:20 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-02-12 21:23:20 +0000 |
commit | 527473df0d9c9f0e03b79c7f6535b9ad6a45867d (patch) | |
tree | 5eb34029c2574dc6f97c9bdffddf1164fc2786f6 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 0e4b101222d1bea0d9f2e4d28ccea5302eeebfe7 (diff) | |
download | llvm-527473df0d9c9f0e03b79c7f6535b9ad6a45867d.zip llvm-527473df0d9c9f0e03b79c7f6535b9ad6a45867d.tar.gz llvm-527473df0d9c9f0e03b79c7f6535b9ad6a45867d.tar.bz2 |
Fix typoo.
llvm-svn: 228963
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 9a0fe17..057b970 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2224,8 +2224,8 @@ public: /// Emit an l-value for an assignment (simple or compound) of complex type. LValue EmitComplexAssignmentLValue(const BinaryOperator *E); LValue EmitComplexCompoundAssignmentLValue(const CompoundAssignOperator *E); - LValue EmitScalarCompooundAssignWithComplex(const CompoundAssignOperator *E, - llvm::Value *&Result); + LValue EmitScalarCompoundAssignWithComplex(const CompoundAssignOperator *E, + llvm::Value *&Result); // Note: only available for agg return types LValue EmitBinaryOperatorLValue(const BinaryOperator *E); |