Fix weird line-wrapping.
authorRui Ueyama <ruiu@google.com>
Mon, 6 Apr 2015 20:10:09 +0000 (20:10 +0000)
committerRui Ueyama <ruiu@google.com>
Mon, 6 Apr 2015 20:10:09 +0000 (20:10 +0000)
llvm-svn: 234203

lld/lib/ReaderWriter/ELF/ELFFile.h

index 0b6ac9425c2a25a0d08478783f0b79e3037be886..698cf8a75bcf65a6b9f8cc2fc2cfe4dff0b9b41c 100644 (file)
@@ -697,19 +697,15 @@ template <class ELFT> std::error_code ELFFile<ELFT>::createAtoms() {
 
     bool addAtoms = true;
 
-    // A section of type SHT_GROUP defines a grouping of sections. The name of a
-    // symbol from one of the containing object's symbol tables provides a
-    // signature
-    // for the section group. The section header of the SHT_GROUP section
-    // specifies
-    // the identifying symbol entry, as described : the sh_link member contains
-    // the section header index of the symbol table section that contains the
-    // entry.
-    // The sh_info member contains the symbol table index of the identifying
-    // entry.
-    // The sh_flags member of the section header contains 0. The name of the
-    // section
-    // (sh_name) is not specified.
+    // A section of type SHT_GROUP defines a grouping of sections. The
+    // name of a symbol from one of the containing object's symbol tables
+    // provides a signature for the section group. The section header of
+    // the SHT_GROUP section specifies the identifying symbol entry, as
+    // described: the sh_link member contains the section header index of
+    // the symbol table section that contains the entry. The sh_info
+    // member contains the symbol table index of the identifying entry.
+    // The sh_flags member of the section header contains 0. The name of
+    // the section (sh_name) is not specified.
     if (isGroupSection(section)) {
       const Elf_Word *groupMembers =
           reinterpret_cast<const Elf_Word *>(sectionContents->data());