commit | eae66c019bf0021706cdd66c91fb492633a447bc | [log] [tgz] |
---|---|---|
author | Simon Atanasyan <simon@atanasyan.com> | Wed Feb 10 10:08:39 2016 +0000 |
committer | Simon Atanasyan <simon@atanasyan.com> | Wed Feb 10 10:08:39 2016 +0000 |
tree | ff2b83c2a912e849e783f483013a7606bd4b4213 | |
parent | 6231391fa7398ec430633ddcd3568d698c0c9d62 [diff] |
[ELF][MIPS] Group and sort initialization of MipsTargetInfo class fields. NFC llvm-svn: 260365
diff --git a/lld/ELF/Target.cpp b/lld/ELF/Target.cpp index c7254e0..524c705 100644 --- a/lld/ELF/Target.cpp +++ b/lld/ELF/Target.cpp
@@ -1385,9 +1385,9 @@ } template <class ELFT> MipsTargetInfo<ELFT>::MipsTargetInfo() { - CopyRel = R_MIPS_COPY; - PageSize = 65536; GotHeaderEntriesNum = 2; + PageSize = 65536; + CopyRel = R_MIPS_COPY; RelativeRel = R_MIPS_REL32; }