diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2010-12-18 05:37:28 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2010-12-18 05:37:28 +0000 |
commit | 1ec5bd31fe491e610839ea448bd99fd171785837 (patch) | |
tree | 7d7198b7dd08a147c37708b965589230ad88fd72 /lib/Target/PowerPC/PPCAsmBackend.cpp | |
parent | 54f08852f6c45a1165295d66bd072e2d1da7a6d1 (diff) |
Remove the MCObjectFormat class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122147 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCAsmBackend.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPCAsmBackend.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/Target/PowerPC/PPCAsmBackend.cpp b/lib/Target/PowerPC/PPCAsmBackend.cpp index 9dfc6fce94..c4d4ac9b3e 100644 --- a/lib/Target/PowerPC/PPCAsmBackend.cpp +++ b/lib/Target/PowerPC/PPCAsmBackend.cpp @@ -12,7 +12,6 @@ #include "PPCFixupKinds.h" #include "llvm/MC/MCMachObjectWriter.h" #include "llvm/MC/MCSectionMachO.h" -#include "llvm/MC/MCObjectFormat.h" #include "llvm/MC/MCObjectWriter.h" #include "llvm/Object/MachOFormat.h" #include "llvm/Target/TargetRegistry.h" @@ -82,14 +81,9 @@ public: // FIXME: This should be in a separate file. namespace { class DarwinPPCAsmBackend : public PPCAsmBackend { - MCMachOObjectFormat Format; public: DarwinPPCAsmBackend(const Target &T) : PPCAsmBackend(T) { } - virtual const MCObjectFormat &getObjectFormat() const { - return Format; - } - void ApplyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize, uint64_t Value) const { assert(0 && "UNIMP"); |