aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-05-26 00:02:12 +0000
committerEric Christopher <echristo@apple.com>2010-05-26 00:02:12 +0000
commit96ac5156cadde7e4494990d5b4f873e76787a370 (patch)
treea97ce8e51e5cd25d043907985b60f91f0dfca084 /include/llvm
parent76f0ad7bf5c05d6056b3bf335d0c3fb7e72de5d6 (diff)
downloadexternal_llvm-96ac5156cadde7e4494990d5b4f873e76787a370.zip
external_llvm-96ac5156cadde7e4494990d5b4f873e76787a370.tar.gz
external_llvm-96ac5156cadde7e4494990d5b4f873e76787a370.tar.bz2
Start adding mach-o tls reloc support.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104651 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/MC/MCExpr.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/MC/MCExpr.h b/include/llvm/MC/MCExpr.h
index bb8f2bb..1f9b8f2 100644
--- a/include/llvm/MC/MCExpr.h
+++ b/include/llvm/MC/MCExpr.h
@@ -136,7 +136,8 @@ public:
VK_TLSGD,
VK_TPOFF,
VK_ARM_HI16, // The R_ARM_MOVT_ABS relocation (:upper16: in the asm file)
- VK_ARM_LO16 // The R_ARM_MOVW_ABS_NC relocation (:lower16: in the asm file)
+ VK_ARM_LO16, // The R_ARM_MOVW_ABS_NC relocation (:lower16: in the asm file)
+ VK_TLVP // Mach-O thread local variable relocation
};
private: