diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-03-15 21:09:38 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-03-15 21:09:38 +0000 |
commit | bbcaa40227528485943781b1ab31a4821ac5c25e (patch) | |
tree | d6bbdc7ff35fdc155cde0cb7f62a3df98bff53b7 /llvm/lib/Target/X86/X86TargetObjectFile.h | |
parent | 561334a81fc14a15388e94d05aea3c6232620374 (diff) | |
download | bcm5719-llvm-bbcaa40227528485943781b1ab31a4821ac5c25e.tar.gz bcm5719-llvm-bbcaa40227528485943781b1ab31a4821ac5c25e.zip |
Now that the default for Darwin platforms is to place the LSDA into the TEXT
section, remove the target-specific code that performs this.
llvm-svn: 98580
Diffstat (limited to 'llvm/lib/Target/X86/X86TargetObjectFile.h')
-rw-r--r-- | llvm/lib/Target/X86/X86TargetObjectFile.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/llvm/lib/Target/X86/X86TargetObjectFile.h b/llvm/lib/Target/X86/X86TargetObjectFile.h index 2ae7631ef57..f2fd49caca3 100644 --- a/llvm/lib/Target/X86/X86TargetObjectFile.h +++ b/llvm/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, |