This repository was archived by the owner on Nov 1, 2021. It is now read-only.
File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1086,8 +1086,8 @@ EmitComplexCompoundAssignmentLValue(const CompoundAssignOperator *E) {
1086
1086
}
1087
1087
1088
1088
LValue CodeGenFunction::
1089
- EmitScalarCompooundAssignWithComplex (const CompoundAssignOperator *E,
1090
- llvm::Value *&Result) {
1089
+ EmitScalarCompoundAssignWithComplex (const CompoundAssignOperator *E,
1090
+ llvm::Value *&Result) {
1091
1091
CompoundFunc Op = getComplexOp (E->getOpcode ());
1092
1092
RValue Val;
1093
1093
LValue Ret = ComplexExprEmitter (*this ).EmitCompoundAssignLValue (E, Op, Val);
Original file line number Diff line number Diff line change @@ -2056,7 +2056,7 @@ LValue ScalarExprEmitter::EmitCompoundAssignLValue(
2056
2056
BinOpInfo OpInfo;
2057
2057
2058
2058
if (E->getComputationResultType ()->isAnyComplexType ())
2059
- return CGF.EmitScalarCompooundAssignWithComplex (E, Result);
2059
+ return CGF.EmitScalarCompoundAssignWithComplex (E, Result);
2060
2060
2061
2061
// Emit the RHS first. __block variables need to have the rhs evaluated
2062
2062
// first, plus this should improve codegen a little.
Original file line number Diff line number Diff line change @@ -2224,8 +2224,8 @@ class CodeGenFunction : public CodeGenTypeCache {
2224
2224
// / Emit an l-value for an assignment (simple or compound) of complex type.
2225
2225
LValue EmitComplexAssignmentLValue (const BinaryOperator *E);
2226
2226
LValue EmitComplexCompoundAssignmentLValue (const CompoundAssignOperator *E);
2227
- LValue EmitScalarCompooundAssignWithComplex (const CompoundAssignOperator *E,
2228
- llvm::Value *&Result);
2227
+ LValue EmitScalarCompoundAssignWithComplex (const CompoundAssignOperator *E,
2228
+ llvm::Value *&Result);
2229
2229
2230
2230
// Note: only available for agg return types
2231
2231
LValue EmitBinaryOperatorLValue (const BinaryOperator *E);
You can’t perform that action at this time.
0 commit comments