diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-01-30 04:02:47 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-01-30 04:02:47 +0000 |
commit | 56e06e86406421bd0d4ea86e07cca3621dbf2382 (patch) | |
tree | 35365d85b9dc017cd9d3a26007607fa7567daa07 /llvm/lib/MC/MCExpr.cpp | |
parent | a3f12bdeecaae4a8c17483f096d4c30a02036dd8 (diff) | |
download | bcm5719-llvm-56e06e86406421bd0d4ea86e07cca3621dbf2382.tar.gz bcm5719-llvm-56e06e86406421bd0d4ea86e07cca3621dbf2382.zip |
ARM: suuport .tlsdescseq directive
This enhances the ARMAsmParser to handle .tlsdescseq directives. This is a
slightly special relocation. We must be able to generate them, but not consume
them in assembly. The relocation is meant to assist the linker in generating a
TLS descriptor sequence. The ELF target streamer is enhanced to append
additional fixups into the current segment and that is used to emit the new
R_ARM_TLS_DESCSEQ relocations.
llvm-svn: 200448
Diffstat (limited to 'llvm/lib/MC/MCExpr.cpp')
-rw-r--r-- | llvm/lib/MC/MCExpr.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/MC/MCExpr.cpp b/llvm/lib/MC/MCExpr.cpp index d402e6d896b..75bde8ed36b 100644 --- a/llvm/lib/MC/MCExpr.cpp +++ b/llvm/lib/MC/MCExpr.cpp @@ -187,6 +187,7 @@ StringRef MCSymbolRefExpr::getVariantKindName(VariantKind Kind) { case VK_ARM_TLSLDO: return "tlsldo"; case VK_ARM_TLSCALL: return "tlscall"; case VK_ARM_TLSDESC: return "tlsdesc"; + case VK_ARM_TLSDESCSEQ: return "tlsdescseq"; case VK_PPC_LO: return "l"; case VK_PPC_HI: return "h"; case VK_PPC_HA: return "ha"; |