diff options
author | Chris Lattner <sabre@nondot.org> | 2010-02-02 19:41:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-02-02 19:41:23 +0000 |
commit | 4db361395b762b1de6059827a6fabb1952373f98 (patch) | |
tree | 0b9b260f3022e9b7d10c469fdf4cb303d0659760 /lib/Target/TargetMachOWriterInfo.cpp | |
parent | 45f8c095ad94888716ceff54daf2fdf2f2f668a4 (diff) |
remove the remnants of TargetMachOWriterInfo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95114 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/TargetMachOWriterInfo.cpp')
-rw-r--r-- | lib/Target/TargetMachOWriterInfo.cpp | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/Target/TargetMachOWriterInfo.cpp b/lib/Target/TargetMachOWriterInfo.cpp deleted file mode 100644 index d608119817..0000000000 --- a/lib/Target/TargetMachOWriterInfo.cpp +++ /dev/null @@ -1,25 +0,0 @@ -//===-- llvm/Target/TargetMachOWriterInfo.h - MachO Writer Info -*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// This file defines the TargetMachOWriterInfo class. -// -//===----------------------------------------------------------------------===// - -#include "llvm/Target/TargetMachOWriterInfo.h" -#include "llvm/CodeGen/MachineRelocation.h" -using namespace llvm; - -TargetMachOWriterInfo::~TargetMachOWriterInfo() {} - -MachineRelocation -TargetMachOWriterInfo::GetJTRelocation(unsigned Offset, - MachineBasicBlock *MBB) const { - // FIXME: do something about PIC - return MachineRelocation::getBB(Offset, MachineRelocation::VANILLA, MBB); -} |