summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorge Rimar <grimar@accesssoftek.com>2016-12-15 15:38:58 +0000
committerGeorge Rimar <grimar@accesssoftek.com>2016-12-15 15:38:58 +0000
commit879a657680e808a8a0eeb6b45eaaaf635a91048d (patch)
treed1eefc200d2d653ad6889b7b59d524d90abefea9
parent93c64025fc7a2f92806902ee86b89abc420dfba7 (diff)
downloadbcm5719-llvm-879a657680e808a8a0eeb6b45eaaaf635a91048d.tar.gz
bcm5719-llvm-879a657680e808a8a0eeb6b45eaaaf635a91048d.zip
[ELF] - Apply format (2). NFC.
llvm-svn: 289824
-rw-r--r--lld/ELF/SyntheticSections.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/lld/ELF/SyntheticSections.cpp b/lld/ELF/SyntheticSections.cpp
index 1596b9a21ea..96a4f70f880 100644
--- a/lld/ELF/SyntheticSections.cpp
+++ b/lld/ELF/SyntheticSections.cpp
@@ -500,7 +500,8 @@ void MipsGotSection<ELFT>::addEntry(SymbolBody &Sym, uintX_t Addend,
}
}
-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>::ARMExidxSentinelSection()
// 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);
OpenPOWER on IntegriCloud