[lld] r234203 - Fix weird line-wrapping.
Rui Ueyama
ruiu at google.com
Mon Apr 6 13:10:09 PDT 2015
Author: ruiu
Date: Mon Apr 6 15:10:09 2015
New Revision: 234203
URL: http://llvm.org/viewvc/llvm-project?rev=234203&view=rev
Log:
Fix weird line-wrapping.
Modified:
lld/trunk/lib/ReaderWriter/ELF/ELFFile.h
Modified: lld/trunk/lib/ReaderWriter/ELF/ELFFile.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/lib/ReaderWriter/ELF/ELFFile.h?rev=234203&r1=234202&r2=234203&view=diff
==============================================================================
--- lld/trunk/lib/ReaderWriter/ELF/ELFFile.h (original)
+++ lld/trunk/lib/ReaderWriter/ELF/ELFFile.h Mon Apr 6 15:10:09 2015
@@ -697,19 +697,15 @@ template <class ELFT> std::error_code EL
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());
More information about the llvm-commits
mailing list