@@ -3913,7 +3913,7 @@ static bool isCurrentFunctionAccessor(SILGenFunction &SGF,
39133913 contextAccessorDecl->getAccessorKind () == accessorKind;
39143914}
39153915
3916- static bool isSynthesizedDefaultImplementionatThunk (SILGenFunction &SGF) {
3916+ static bool isSynthesizedDefaultImplementionThunk (SILGenFunction &SGF) {
39173917 if (!SGF.FunctionDC )
39183918 return false ;
39193919
@@ -3956,7 +3956,7 @@ LValue SILGenLValue::visitMemberRefExpr(MemberRefExpr *e,
39563956 AccessStrategy strategy = var->getAccessStrategy (
39573957 accessSemantics, getFormalAccessKind (accessKind),
39583958 SGF.SGM .M .getSwiftModule (), SGF.F .getResilienceExpansion (),
3959- /* useOldABI=*/ isSynthesizedDefaultImplementionatThunk (SGF));
3959+ /* useOldABI=*/ isSynthesizedDefaultImplementionThunk (SGF));
39603960
39613961 bool isOnSelfParameter = isCallToSelfOfCurrentFunction (SGF, e);
39623962
@@ -4165,7 +4165,7 @@ LValue SILGenLValue::visitSubscriptExpr(SubscriptExpr *e,
41654165 auto strategy = decl->getAccessStrategy (
41664166 accessSemantics, getFormalAccessKind (accessKind),
41674167 SGF.SGM .M .getSwiftModule (), SGF.F .getResilienceExpansion (),
4168- /* useOldABI=*/ isSynthesizedDefaultImplementionatThunk (SGF));
4168+ /* useOldABI=*/ isSynthesizedDefaultImplementionThunk (SGF));
41694169
41704170 bool isOnSelfParameter = isCallToSelfOfCurrentFunction (SGF, e);
41714171 bool isContextRead = isCurrentFunctionAccessor (SGF, AccessorKind::Read);
0 commit comments