Skip to content

Commit 48f37da

Browse files
committed
Fix formatting of comment. NFC.
1 parent 56b1f23 commit 48f37da

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

lib/SILPasses/Utils/Generics.cpp

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -156,12 +156,13 @@ static bool cacheSpecialization(SILModule &M, SILFunction *F) {
156156
llvm::dbgs() << "Keep specialization: " << DemangledName << " : "
157157
<< F->getName() << "\n");
158158
// Make it public, so that others can refer to it.
159-
// NOTE: This function may refer to non-public symbols, which may lead
160-
// to problems, if you ever try to inline this function. Therefore,
161-
// these specializations should only be used to refer to them,
162-
// but should never be inlined!
163-
// The general rule could be: Never inline specializations from stdlib!
164-
159+
//
160+
// NOTE: This function may refer to non-public symbols, which may lead to
161+
// problems, if you ever try to inline this function. Therefore, these
162+
// specializations should only be used to refer to them, but should never
163+
// be inlined! The general rule could be: Never inline specializations
164+
// from stdlib!
165+
//
165166
// NOTE: Making these specializations public at this point breaks
166167
// some optimizations. Therefore, just mark the function.
167168
// DeadFunctionElimination pass will check if the function is marked

0 commit comments

Comments
 (0)