Skip to content

Commit 9d43ae4

Browse files
committed
Fix 80-column violations in generic specializer.
Swift SVN r22593
1 parent 89e60f3 commit 9d43ae4

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lib/SILPasses/GenericSpecializer.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,8 @@ GenericSpecializer::specializeApplyInstGroup(SILFunction *F, AIList &List) {
255255
for (auto &AI : List) {
256256
bool Placed = false;
257257

258-
DEBUG(llvm::dbgs() << "Function: " << AI->getFunction()->getName() << "; ApplyInst: " << *AI);
258+
DEBUG(llvm::dbgs() << "Function: " << AI->getFunction()->getName() <<
259+
"; ApplyInst: " << *AI);
259260

260261
// Scan the existing buckets and search for a bucket of the right type.
261262
for (int i = 0, e = Buckets.size(); i < e; ++i) {
@@ -336,8 +337,8 @@ GenericSpecializer::specializeApplyInstGroup(SILFunction *F, AIList &List) {
336337
auto Subs = Bucket[0]->getSubstitutions();
337338
auto FTy =
338339
F->getLoweredFunctionType()->substGenericArgs(*M,
339-
M->getSwiftModule(),
340-
Subs);
340+
M->getSwiftModule(),
341+
Subs);
341342
assert(FTy == NewF->getLoweredFunctionType() &&
342343
"Previously specialized function does not match expected type.");
343344
#endif

0 commit comments

Comments
 (0)