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/ARM/ARMTargetObjectFile.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/ARM/ARMTargetObjectFile.h')
-rw-r--r-- | llvm/lib/Target/ARM/ARMTargetObjectFile.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/llvm/lib/Target/ARM/ARMTargetObjectFile.h b/llvm/lib/Target/ARM/ARMTargetObjectFile.h index 481d7abd310..097fc2cceba 100644 --- a/llvm/lib/Target/ARM/ARMTargetObjectFile.h +++ b/llvm/lib/Target/ARM/ARMTargetObjectFile.h @@ -24,18 +24,6 @@ public: virtual void Initialize(MCContext &Ctx, const TargetMachine &TM); }; -// FIXME: This subclass isn't 100% necessary. It will become obsolete once we -// can place all LSDAs into the TEXT section. See -// <rdar://problem/6804645>. -class ARMMachOTargetObjectFile : public TargetLoweringObjectFileMachO { -public: - ARMMachOTargetObjectFile() : TargetLoweringObjectFileMachO() {} - - virtual void Initialize(MCContext &Ctx, const TargetMachine &TM); - - virtual unsigned getTTypeEncoding() const; -}; - } // end namespace llvm #endif |