[lld] r289824 - [ELF] - Apply format (2). NFC.

George Rimar via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 15 07:38:58 PST 2016


Author: grimar
Date: Thu Dec 15 09:38:58 2016
New Revision: 289824

URL: http://llvm.org/viewvc/llvm-project?rev=289824&view=rev
Log:
[ELF] - Apply format (2). NFC.

Modified:
    lld/trunk/ELF/SyntheticSections.cpp

Modified: lld/trunk/ELF/SyntheticSections.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/SyntheticSections.cpp?rev=289824&r1=289823&r2=289824&view=diff
==============================================================================
--- lld/trunk/ELF/SyntheticSections.cpp (original)
+++ lld/trunk/ELF/SyntheticSections.cpp Thu Dec 15 09:38:58 2016
@@ -500,7 +500,8 @@ void MipsGotSection<ELFT>::addEntry(Symb
   }
 }
 
-template <class ELFT> bool MipsGotSection<ELFT>::addDynTlsEntry(SymbolBody &Sym) {
+template <class ELFT>
+bool MipsGotSection<ELFT>::addDynTlsEntry(SymbolBody &Sym) {
   if (Sym.GlobalDynIndex != -1U)
     return false;
   Sym.GlobalDynIndex = TlsEntries.size();
@@ -1841,7 +1842,8 @@ ARMExidxSentinelSection<ELFT>::ARMExidxS
 // This section will have been sorted last in the .ARM.exidx table.
 // This table entry will have the form:
 // | PREL31 upper bound of code that has exception tables | EXIDX_CANTUNWIND |
-template <class ELFT> void ARMExidxSentinelSection<ELFT>::writeTo(uint8_t *Buf){
+template <class ELFT>
+void ARMExidxSentinelSection<ELFT>::writeTo(uint8_t *Buf) {
   // Get the InputSection before us, we are by definition last
   auto RI = cast<OutputSection<ELFT>>(this->OutSec)->Sections.rbegin();
   InputSection<ELFT> *LE = *(++RI);




More information about the llvm-commits mailing list