diff options
Diffstat (limited to 'lld/COFF/MapFile.cpp')
-rw-r--r-- | lld/COFF/MapFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/COFF/MapFile.cpp b/lld/COFF/MapFile.cpp index 57a12b8a62f..f98cf8fa613 100644 --- a/lld/COFF/MapFile.cpp +++ b/lld/COFF/MapFile.cpp @@ -106,7 +106,7 @@ void coff::writeMapFile(ArrayRef<OutputSection *> outputSections) { // Print out file contents. for (OutputSection *sec : outputSections) { - writeHeader(os, sec->getRVA(), sec->getVirtualSize(), /*Align=*/pageSize); + writeHeader(os, sec->getRVA(), sec->getVirtualSize(), /*align=*/pageSize); os << sec->name << '\n'; for (Chunk *c : sec->chunks) { |