diff options
author | Rui Ueyama <ruiu@google.com> | 2019-02-20 00:01:21 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2019-02-20 00:01:21 +0000 |
commit | 3ae672623401ab9e0b5adc1c10cfd371246ab207 (patch) | |
tree | 8a5203051b11d730b6a50060fe3a06c57298e7a3 | |
parent | 9cf04addf39ccfd913d926ac1ae698d470f74e29 (diff) | |
download | bcm5719-llvm-3ae672623401ab9e0b5adc1c10cfd371246ab207.tar.gz bcm5719-llvm-3ae672623401ab9e0b5adc1c10cfd371246ab207.zip |
Sort enum members so that arch-dependent members are at the right place. NFC.
llvm-svn: 354405
-rw-r--r-- | lld/ELF/Relocations.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/ELF/Relocations.h b/lld/ELF/Relocations.h index fbb96b84009..b7de8a8367b 100644 --- a/lld/ELF/Relocations.h +++ b/lld/ELF/Relocations.h @@ -31,7 +31,6 @@ typedef uint32_t RelType; enum RelExpr { R_ABS, R_ADDEND, - R_ARM_SBREL, R_GOT, R_GOTONLY_PC, R_GOTONLY_PC_FROM_END, @@ -40,7 +39,6 @@ enum RelExpr { R_GOT_FROM_END, R_GOT_OFF, R_GOT_PC, - R_HEXAGON_GOT, R_HINT, R_NEG_TLS, R_NONE, @@ -81,6 +79,8 @@ enum RelExpr { R_AARCH64_PAGE_PC, R_AARCH64_RELAX_TLS_GD_TO_IE_PAGE_PC, R_AARCH64_TLSDESC_PAGE, + R_ARM_SBREL, + R_HEXAGON_GOT, R_MIPS_GOTREL, R_MIPS_GOT_GP, R_MIPS_GOT_GP_PC, |