We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ca39da commit 742f663Copy full SHA for 742f663
lld/MachO/MapFile.cpp
@@ -104,14 +104,14 @@ void macho::writeMapFile() {
104
return;
105
}
106
107
- // Dump output path
+ // Dump output path.
108
os << format("# Path: %s\n", config->outputFile.str().c_str());
109
110
- // Dump output architecure
+ // Dump output architecture.
111
os << format("# Arch: %s\n",
112
getArchitectureName(config->target.Arch).str().c_str());
113
114
- // Dump table of object files
+ // Dump table of object files.
115
os << "# Object files:\n";
116
os << format("[%3u] %s\n", 0, (const char *)"linker synthesized");
117
uint32_t fileIndex = 1;
0 commit comments