@@ -3913,7 +3913,7 @@ static bool isCurrentFunctionAccessor(SILGenFunction &SGF,
3913
3913
contextAccessorDecl->getAccessorKind () == accessorKind;
3914
3914
}
3915
3915
3916
- static bool isSynthesizedDefaultImplementionatThunk (SILGenFunction &SGF) {
3916
+ static bool isSynthesizedDefaultImplementionThunk (SILGenFunction &SGF) {
3917
3917
if (!SGF.FunctionDC )
3918
3918
return false ;
3919
3919
@@ -3956,7 +3956,7 @@ LValue SILGenLValue::visitMemberRefExpr(MemberRefExpr *e,
3956
3956
AccessStrategy strategy = var->getAccessStrategy (
3957
3957
accessSemantics, getFormalAccessKind (accessKind),
3958
3958
SGF.SGM .M .getSwiftModule (), SGF.F .getResilienceExpansion (),
3959
- /* useOldABI=*/ isSynthesizedDefaultImplementionatThunk (SGF));
3959
+ /* useOldABI=*/ isSynthesizedDefaultImplementionThunk (SGF));
3960
3960
3961
3961
bool isOnSelfParameter = isCallToSelfOfCurrentFunction (SGF, e);
3962
3962
@@ -4165,7 +4165,7 @@ LValue SILGenLValue::visitSubscriptExpr(SubscriptExpr *e,
4165
4165
auto strategy = decl->getAccessStrategy (
4166
4166
accessSemantics, getFormalAccessKind (accessKind),
4167
4167
SGF.SGM .M .getSwiftModule (), SGF.F .getResilienceExpansion (),
4168
- /* useOldABI=*/ isSynthesizedDefaultImplementionatThunk (SGF));
4168
+ /* useOldABI=*/ isSynthesizedDefaultImplementionThunk (SGF));
4169
4169
4170
4170
bool isOnSelfParameter = isCallToSelfOfCurrentFunction (SGF, e);
4171
4171
bool isContextRead = isCurrentFunctionAccessor (SGF, AccessorKind::Read);
0 commit comments