[lld] r207493 - [Mips] 80 column.

Simon Atanasyan simon at atanasyan.com
Mon Apr 28 22:21:37 PDT 2014


Author: atanasyan
Date: Tue Apr 29 00:21:36 2014
New Revision: 207493

URL: http://llvm.org/viewvc/llvm-project?rev=207493&view=rev
Log:
[Mips] 80 column.

Modified:
    lld/trunk/lib/ReaderWriter/ELF/Mips/MipsRelocationPass.cpp

Modified: lld/trunk/lib/ReaderWriter/ELF/Mips/MipsRelocationPass.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/lib/ReaderWriter/ELF/Mips/MipsRelocationPass.cpp?rev=207493&r1=207492&r2=207493&view=diff
==============================================================================
--- lld/trunk/lib/ReaderWriter/ELF/Mips/MipsRelocationPass.cpp (original)
+++ lld/trunk/lib/ReaderWriter/ELF/Mips/MipsRelocationPass.cpp Tue Apr 29 00:21:36 2014
@@ -18,10 +18,14 @@ using namespace lld::elf;
 using namespace llvm::ELF;
 
 // Lazy resolver
-static const uint8_t mipsGot0AtomContent[] = { 0x00, 0x00, 0x00, 0x00 };
+static const uint8_t mipsGot0AtomContent[] = {
+  0x00, 0x00, 0x00, 0x00
+};
 
 // Module pointer
-static const uint8_t mipsGotModulePointerAtomContent[] = { 0x00, 0x00, 0x00, 0x80 };
+static const uint8_t mipsGotModulePointerAtomContent[] = {
+  0x00, 0x00, 0x00, 0x80
+};
 
 // PLT0 entry
 static const uint8_t mipsPlt0AtomContent[] = {





More information about the llvm-commits mailing list