mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 15:33:33 +00:00
Remove unused c'tor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183570 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
df74b86e1e
commit
1ce4985e01
@ -53,13 +53,8 @@ namespace {
|
||||
static char ID;
|
||||
explicit Emitter(X86TargetMachine &tm, CodeEmitter &mce)
|
||||
: MachineFunctionPass(ID), II(0), TD(0), TM(tm),
|
||||
MCE(mce), PICBaseOffset(0), Is64BitMode(false),
|
||||
IsPIC(TM.getRelocationModel() == Reloc::PIC_) {}
|
||||
Emitter(X86TargetMachine &tm, CodeEmitter &mce,
|
||||
const X86InstrInfo &ii, const DataLayout &td, bool is64)
|
||||
: MachineFunctionPass(ID), II(&ii), TD(&td), TM(tm),
|
||||
MCE(mce), PICBaseOffset(0), Is64BitMode(is64),
|
||||
IsPIC(TM.getRelocationModel() == Reloc::PIC_) {}
|
||||
MCE(mce), PICBaseOffset(0), Is64BitMode(false),
|
||||
IsPIC(TM.getRelocationModel() == Reloc::PIC_) {}
|
||||
|
||||
bool runOnMachineFunction(MachineFunction &MF);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user