aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2013-07-01 21:45:25 +0000
committerDavid Blaikie <dblaikie@gmail.com>2013-07-01 21:45:25 +0000
commita35ae962918258207f9092ccbdf4fffa1f2c70f1 (patch)
tree714e3c5d5f29eb0dd4fcfe1c4561cef6242ec35b /include
parent1307d8300f6fe97059998480c42b44faefbc9b99 (diff)
downloadexternal_llvm-a35ae962918258207f9092ccbdf4fffa1f2c70f1.zip
external_llvm-a35ae962918258207f9092ccbdf4fffa1f2c70f1.tar.gz
external_llvm-a35ae962918258207f9092ccbdf4fffa1f2c70f1.tar.bz2
PR16493: DebugInfo with TLS on PPC crashing due to invalid relocation
Restrict the current TLS support to X86 ELF for now. Test that we don't produce it on PPC & we can flesh that test case out with the right thing once someone implements it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185389 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/TargetLoweringObjectFileImpl.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h b/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
index 5e11ecf..5b22c9c 100644
--- a/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
+++ b/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
@@ -72,9 +72,6 @@ public:
getStaticCtorSection(unsigned Priority = 65535) const;
virtual const MCSection *
getStaticDtorSection(unsigned Priority = 65535) const;
-
- /// \brief Describe a TLS variable address within debug info.
- virtual const MCSymbolRefExpr *getDebugThreadLocalSymbol(const MCSymbol *Sym) const;
};