Skip to content

Commit 38a9ef7

Browse files
committed
[NFC] Fixed function name spelling.
1 parent 11e3ea5 commit 38a9ef7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/SILGen/SILGenLValue.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3889,7 +3889,7 @@ static bool isCurrentFunctionAccessor(SILGenFunction &SGF,
38893889
contextAccessorDecl->getAccessorKind() == accessorKind;
38903890
}
38913891

3892-
static bool isSynthesizedDefaultImplementionatThunk(SILGenFunction &SGF) {
3892+
static bool isSynthesizedDefaultImplementionThunk(SILGenFunction &SGF) {
38933893
if (!SGF.FunctionDC)
38943894
return false;
38953895

@@ -3932,7 +3932,7 @@ LValue SILGenLValue::visitMemberRefExpr(MemberRefExpr *e,
39323932
AccessStrategy strategy = var->getAccessStrategy(
39333933
accessSemantics, getFormalAccessKind(accessKind),
39343934
SGF.SGM.M.getSwiftModule(), SGF.F.getResilienceExpansion(),
3935-
/*useOldABI=*/isSynthesizedDefaultImplementionatThunk(SGF));
3935+
/*useOldABI=*/isSynthesizedDefaultImplementionThunk(SGF));
39363936

39373937
bool isOnSelfParameter = isCallToSelfOfCurrentFunction(SGF, e);
39383938

@@ -4141,7 +4141,7 @@ LValue SILGenLValue::visitSubscriptExpr(SubscriptExpr *e,
41414141
auto strategy = decl->getAccessStrategy(
41424142
accessSemantics, getFormalAccessKind(accessKind),
41434143
SGF.SGM.M.getSwiftModule(), SGF.F.getResilienceExpansion(),
4144-
/*useOldABI=*/isSynthesizedDefaultImplementionatThunk(SGF));
4144+
/*useOldABI=*/isSynthesizedDefaultImplementionThunk(SGF));
41454145

41464146
bool isOnSelfParameter = isCallToSelfOfCurrentFunction(SGF, e);
41474147
bool isContextRead = isCurrentFunctionAccessor(SGF, AccessorKind::Read);

0 commit comments

Comments
 (0)