summaryrefslogtreecommitdiff
path: root/lib/Target/TargetMachOWriterInfo.cpp
blob: d608119817d632acbdecd1cdf73d0d856e2db59a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//===-- 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);
}