@@ -3889,7 +3889,7 @@ static bool isCurrentFunctionAccessor(SILGenFunction &SGF,
3889
3889
contextAccessorDecl->getAccessorKind () == accessorKind;
3890
3890
}
3891
3891
3892
- static bool isSynthesizedDefaultImplementionatThunk (SILGenFunction &SGF) {
3892
+ static bool isSynthesizedDefaultImplementionThunk (SILGenFunction &SGF) {
3893
3893
if (!SGF.FunctionDC )
3894
3894
return false ;
3895
3895
@@ -3932,7 +3932,7 @@ LValue SILGenLValue::visitMemberRefExpr(MemberRefExpr *e,
3932
3932
AccessStrategy strategy = var->getAccessStrategy (
3933
3933
accessSemantics, getFormalAccessKind (accessKind),
3934
3934
SGF.SGM .M .getSwiftModule (), SGF.F .getResilienceExpansion (),
3935
- /* useOldABI=*/ isSynthesizedDefaultImplementionatThunk (SGF));
3935
+ /* useOldABI=*/ isSynthesizedDefaultImplementionThunk (SGF));
3936
3936
3937
3937
bool isOnSelfParameter = isCallToSelfOfCurrentFunction (SGF, e);
3938
3938
@@ -4141,7 +4141,7 @@ LValue SILGenLValue::visitSubscriptExpr(SubscriptExpr *e,
4141
4141
auto strategy = decl->getAccessStrategy (
4142
4142
accessSemantics, getFormalAccessKind (accessKind),
4143
4143
SGF.SGM .M .getSwiftModule (), SGF.F .getResilienceExpansion (),
4144
- /* useOldABI=*/ isSynthesizedDefaultImplementionatThunk (SGF));
4144
+ /* useOldABI=*/ isSynthesizedDefaultImplementionThunk (SGF));
4145
4145
4146
4146
bool isOnSelfParameter = isCallToSelfOfCurrentFunction (SGF, e);
4147
4147
bool isContextRead = isCurrentFunctionAccessor (SGF, AccessorKind::Read);
0 commit comments