[lld] 742f663 - fix comment typo to cycle bots

Nico Weber via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 29 11:36:18 PDT 2021


Author: Nico Weber
Date: 2021-03-29T14:35:57-04:00
New Revision: 742f663705bbf076c2f7f1459182d5928feb1ec8

URL: https://github.com/llvm/llvm-project/commit/742f663705bbf076c2f7f1459182d5928feb1ec8
DIFF: https://github.com/llvm/llvm-project/commit/742f663705bbf076c2f7f1459182d5928feb1ec8.diff

LOG: fix comment typo to cycle bots

Added: 
    

Modified: 
    lld/MachO/MapFile.cpp

Removed: 
    


################################################################################
diff  --git a/lld/MachO/MapFile.cpp b/lld/MachO/MapFile.cpp
index a10516f90d19..621b52f7403e 100644
--- a/lld/MachO/MapFile.cpp
+++ b/lld/MachO/MapFile.cpp
@@ -104,14 +104,14 @@ void macho::writeMapFile() {
     return;
   }
 
-  // Dump output path
+  // Dump output path.
   os << format("# Path: %s\n", config->outputFile.str().c_str());
 
-  // Dump output architecure
+  // Dump output architecture.
   os << format("# Arch: %s\n",
                getArchitectureName(config->target.Arch).str().c_str());
 
-  // Dump table of object files
+  // Dump table of object files.
   os << "# Object files:\n";
   os << format("[%3u] %s\n", 0, (const char *)"linker synthesized");
   uint32_t fileIndex = 1;


        


More information about the llvm-commits mailing list