[lld] r363017 - Wrap comment to 80 columns
Nico Weber via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 10 18:14:23 PDT 2019
Author: nico
Date: Mon Jun 10 18:14:23 2019
New Revision: 363017
URL: http://llvm.org/viewvc/llvm-project?rev=363017&view=rev
Log:
Wrap comment to 80 columns
Modified:
lld/trunk/COFF/Writer.cpp
Modified: lld/trunk/COFF/Writer.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/COFF/Writer.cpp?rev=363017&r1=363016&r2=363017&view=diff
==============================================================================
--- lld/trunk/COFF/Writer.cpp (original)
+++ lld/trunk/COFF/Writer.cpp Mon Jun 10 18:14:23 2019
@@ -849,9 +849,9 @@ void Writer::createSections() {
// Finally, move some output sections to the end.
auto SectionOrder = [&](const OutputSection *S) {
- // Move DISCARDABLE (or non-memory-mapped) sections to the end of file because
- // the loader cannot handle holes. Stripping can remove other discardable ones
- // than .reloc, which is first of them (created early).
+ // Move DISCARDABLE (or non-memory-mapped) sections to the end of file
+ // because the loader cannot handle holes. Stripping can remove other
+ // discardable ones than .reloc, which is first of them (created early).
if (S->Header.Characteristics & IMAGE_SCN_MEM_DISCARDABLE)
return 2;
// .rsrc should come at the end of the non-discardable sections because its
More information about the llvm-commits
mailing list