Skip to content

Commit 1593dee

Browse files
committed
formatting
1 parent e304504 commit 1593dee

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/IRGen/GenDistributed.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -582,8 +582,10 @@ void DistributedAccessor::emitLoadOfWitnessTables(llvm::Value *witnessTables,
582582

583583
void DistributedAccessor::emitReturn(llvm::Value *errorValue) {
584584
// Destroy loaded arguments.
585-
// This MUST be done before deallocating, as otherwise we'd try to swift_release freed memory,
586-
// which will be a no-op, however that also would mean we never drop retain counts to 0 and miss to run deinitializers of classes!
585+
// This MUST be done before deallocating, as otherwise we'd try to
586+
// swift_release freed memory, which will be a no-op, however that also would
587+
// mean we never drop retain counts to 0 and miss to run deinitializers of
588+
// classes!
587589
llvm::for_each(LoadedArguments, [&](const auto &argInfo) {
588590
emitDestroyCall(IGF, argInfo.second, argInfo.first);
589591
});

0 commit comments

Comments
 (0)