summaryrefslogtreecommitdiff
path: root/include/llvm/Support
diff options
context:
space:
mode:
authorZoran Jovanovic <zoran.jovanovic@imgtec.com>2013-10-23 16:14:44 +0000
committerZoran Jovanovic <zoran.jovanovic@imgtec.com>2013-10-23 16:14:44 +0000
commit0082717cb537e2d1424f755a49510fa9f9e67071 (patch)
tree295488d50493c9efe4be359b5a4c28cebd377c86 /include/llvm/Support
parent25b27154893e343e8160b071f6c9145aabfa8cbc (diff)
downloadllvm-0082717cb537e2d1424f755a49510fa9f9e67071.tar.gz
llvm-0082717cb537e2d1424f755a49510fa9f9e67071.tar.bz2
llvm-0082717cb537e2d1424f755a49510fa9f9e67071.tar.xz
Support for microMIPS relocations 1.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193247 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-rw-r--r--include/llvm/Support/ELF.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/llvm/Support/ELF.h b/include/llvm/Support/ELF.h
index 8acaa4a5a8..a7cc206fea 100644
--- a/include/llvm/Support/ELF.h
+++ b/include/llvm/Support/ELF.h
@@ -880,6 +880,17 @@ enum {
R_MIPS_GLOB_DAT = 51,
R_MIPS_COPY = 126,
R_MIPS_JUMP_SLOT = 127,
+ R_MICROMIPS_HI16 = 134,
+ R_MICROMIPS_LO16 = 135,
+ R_MICROMIPS_GOT16 = 138,
+ R_MICROMIPS_CALL16 = 142,
+ R_MICROMIPS_GOT_DISP = 145,
+ R_MICROMIPS_GOT_PAGE = 146,
+ R_MICROMIPS_GOT_OFST = 147,
+ R_MICROMIPS_TLS_DTPREL_HI16 = 164,
+ R_MICROMIPS_TLS_DTPREL_LO16 = 165,
+ R_MICROMIPS_TLS_TPREL_HI16 = 169,
+ R_MICROMIPS_TLS_TPREL_LO16 = 170,
R_MIPS_NUM = 218
};