[lld] r298230 - [ELF] clang-format sortMipsSymbols. NFC

Simon Atanasyan via llvm-commits llvm-commits at lists.llvm.org
Sun Mar 19 12:32:52 PDT 2017


Author: atanasyan
Date: Sun Mar 19 14:32:51 2017
New Revision: 298230

URL: http://llvm.org/viewvc/llvm-project?rev=298230&view=rev
Log:
[ELF] clang-format sortMipsSymbols. 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=298230&r1=298229&r2=298230&view=diff
==============================================================================
--- lld/trunk/ELF/SyntheticSections.cpp (original)
+++ lld/trunk/ELF/SyntheticSections.cpp Sun Mar 19 14:32:51 2017
@@ -1283,7 +1283,8 @@ SymbolTableSection<ELFT>::SymbolTableSec
 // See "Global Offset Table" in Chapter 5 in the following document
 // for detailed description:
 // ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf
-static bool sortMipsSymbols(const SymbolTableEntry &L, const SymbolTableEntry &R) {
+static bool sortMipsSymbols(const SymbolTableEntry &L,
+                            const SymbolTableEntry &R) {
   // Sort entries related to non-local preemptible symbols by GOT indexes.
   // All other entries go to the first part of GOT in arbitrary order.
   bool LIsInLocalGot = !L.Symbol->IsInGlobalMipsGot;




More information about the llvm-commits mailing list