Skip to content

Commit cd2f9a7

Browse files
[gardening] Fix recently introduced typo: "compilaiton" → "compilation"
1 parent 51281e6 commit cd2f9a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/SIL/SILModule.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ SILFunction *SILModule::hasFunction(StringRef Name, SILLinkage Linkage) {
497497

498498
assert((!F || F->getLinkage() != Linkage) &&
499499
"hasFunction should be only called for functions that are not "
500-
"contained in the SILModule yet or do not have a required linkage");
500+
"contained in the SILModule yet or do not have a required linkage");
501501
(void)F;
502502

503503
SILLinkerVisitor Visitor(*this, getSILLoader(),
@@ -512,7 +512,7 @@ SILFunction *SILModule::hasFunction(StringRef Name, SILLinkage Linkage) {
512512
"SILFunction has a wrong linkage");
513513
}
514514
// If a function exists already and it is a non-optimizing
515-
// compilaiton, simply convert it into an external declaration,
515+
// compilation, simply convert it into an external declaration,
516516
// so that a compiled version from the shared library is used.
517517
if (F->isDefinition() &&
518518
F->getModule().getOptions().Optimization <

0 commit comments

Comments
 (0)