aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/X86/X86TargetObjectFile.h
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2010-03-15 21:09:38 +0000
committerBill Wendling <isanbard@gmail.com>2010-03-15 21:09:38 +0000
commit12759cef26b06f95d1290e60c2bb27a7b411edb7 (patch)
treec0708213628aecd6fcfd9ceed9a672ece75195fa /lib/Target/X86/X86TargetObjectFile.h
parentf6853ffef510c3c0217e7e3c98969d82b56585ed (diff)
downloadexternal_llvm-12759cef26b06f95d1290e60c2bb27a7b411edb7.zip
external_llvm-12759cef26b06f95d1290e60c2bb27a7b411edb7.tar.gz
external_llvm-12759cef26b06f95d1290e60c2bb27a7b411edb7.tar.bz2
Now that the default for Darwin platforms is to place the LSDA into the TEXT
section, remove the target-specific code that performs this. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98580 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86TargetObjectFile.h')
-rw-r--r--lib/Target/X86/X86TargetObjectFile.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/lib/Target/X86/X86TargetObjectFile.h b/lib/Target/X86/X86TargetObjectFile.h
index 2ae7631..f2fd49c 100644
--- a/lib/Target/X86/X86TargetObjectFile.h
+++ b/lib/Target/X86/X86TargetObjectFile.h
@@ -17,18 +17,9 @@
namespace llvm {
class X86TargetMachine;
- /// X86_MachoTargetObjectFile - This TLOF implementation is used for Darwin
- /// x86 variants.
- class X86_MachoTargetObjectFile : public TargetLoweringObjectFileMachO {
- public:
- virtual void Initialize(MCContext &Ctx, const TargetMachine &TM);
-
- virtual unsigned getTTypeEncoding() const;
- };
-
/// X8664_MachoTargetObjectFile - This TLOF implementation is used for Darwin
/// x86-64.
- class X8664_MachoTargetObjectFile : public X86_MachoTargetObjectFile {
+ class X8664_MachoTargetObjectFile : public TargetLoweringObjectFileMachO {
public:
virtual const MCExpr *
getExprForDwarfGlobalReference(const GlobalValue *GV, Mangler *Mang,