diff options
author | Colin LeMahieu <colinl@codeaurora.org> | 2016-02-10 18:32:01 +0000 |
---|---|---|
committer | Colin LeMahieu <colinl@codeaurora.org> | 2016-02-10 18:32:01 +0000 |
commit | 0e05192d49681fb2c8f55ef2423b18e553d52078 (patch) | |
tree | b5447198ad78c427155e0f24f839c8f4c7507400 /llvm/lib/Target/PowerPC/PPCTargetObjectFile.cpp | |
parent | 13b01dc8d9ec1fc46e8e75d52bec94e47136d291 (diff) | |
download | llvm-0e05192d49681fb2c8f55ef2423b18e553d52078.zip llvm-0e05192d49681fb2c8f55ef2423b18e553d52078.tar.gz llvm-0e05192d49681fb2c8f55ef2423b18e553d52078.tar.bz2 |
[MC] Merge VK_PPC_TPREL in to generic VK_TPREL.
Differential Revision: http://reviews.llvm.org/D17038
llvm-svn: 260401
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCTargetObjectFile.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCTargetObjectFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCTargetObjectFile.cpp b/llvm/lib/Target/PowerPC/PPCTargetObjectFile.cpp index 798bb9d..8f66035 100644 --- a/llvm/lib/Target/PowerPC/PPCTargetObjectFile.cpp +++ b/llvm/lib/Target/PowerPC/PPCTargetObjectFile.cpp @@ -53,7 +53,7 @@ MCSection *PPC64LinuxTargetObjectFile::SelectSectionForGlobal( const MCExpr *PPC64LinuxTargetObjectFile:: getDebugThreadLocalSymbol(const MCSymbol *Sym) const { const MCExpr *Expr = - MCSymbolRefExpr::create(Sym, MCSymbolRefExpr::VK_PPC_DTPREL, getContext()); + MCSymbolRefExpr::create(Sym, MCSymbolRefExpr::VK_DTPREL, getContext()); return MCBinaryExpr::createAdd(Expr, MCConstantExpr::create(0x8000, getContext()), getContext()); |