COFF: Update comments.
authorRui Ueyama <ruiu@google.com>
Sat, 6 Jun 2015 22:56:55 +0000 (22:56 +0000)
committerRui Ueyama <ruiu@google.com>
Sat, 6 Jun 2015 22:56:55 +0000 (22:56 +0000)
llvm-svn: 239232

lld/COFF/Writer.cpp

index 6beede3..e63f49b 100644 (file)
@@ -128,7 +128,10 @@ void Writer::createSections() {
   }
 }
 
-// Create .idata section contents.
+// Create .idata section for the DLL-imported symbol table.
+// The format of this section is inherently Windows-specific.
+// IdataContents class abstracted away the details for us,
+// so we just let it create chunks and add them to the section.
 void Writer::createImportTables() {
   if (Symtab->ImportFiles.empty())
     return;