[ELF][MIPS] Group and sort initialization of MipsTargetInfo class fields. NFC
authorSimon Atanasyan <simon@atanasyan.com>
Wed, 10 Feb 2016 10:08:39 +0000 (10:08 +0000)
committerSimon Atanasyan <simon@atanasyan.com>
Wed, 10 Feb 2016 10:08:39 +0000 (10:08 +0000)
llvm-svn: 260365

lld/ELF/Target.cpp

index c7254e0..524c705 100644 (file)
@@ -1385,9 +1385,9 @@ void AMDGPUTargetInfo::relocateOne(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
 }
 
 template <class ELFT> MipsTargetInfo<ELFT>::MipsTargetInfo() {
-  CopyRel = R_MIPS_COPY;
-  PageSize = 65536;
   GotHeaderEntriesNum = 2;
+  PageSize = 65536;
+  CopyRel = R_MIPS_COPY;
   RelativeRel = R_MIPS_REL32;
 }