mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Remove unused argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181618 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
50be71d182
commit
6e53180db1
@ -70,8 +70,7 @@ namespace llvm {
|
||||
|
||||
typedef unsigned (*TripleMatchQualityFnTy)(const std::string &TT);
|
||||
|
||||
typedef MCAsmInfo *(*MCAsmInfoCtorFnTy)(const Target &T,
|
||||
StringRef TT);
|
||||
typedef MCAsmInfo *(*MCAsmInfoCtorFnTy)(StringRef TT);
|
||||
typedef MCCodeGenInfo *(*MCCodeGenInfoCtorFnTy)(StringRef TT,
|
||||
Reloc::Model RM,
|
||||
CodeModel::Model CM,
|
||||
@ -269,7 +268,7 @@ namespace llvm {
|
||||
MCAsmInfo *createMCAsmInfo(StringRef Triple) const {
|
||||
if (!MCAsmInfoCtorFn)
|
||||
return 0;
|
||||
return MCAsmInfoCtorFn(*this, Triple);
|
||||
return MCAsmInfoCtorFn(Triple);
|
||||
}
|
||||
|
||||
/// createMCCodeGenInfo - Create a MCCodeGenInfo implementation.
|
||||
@ -804,8 +803,8 @@ namespace llvm {
|
||||
TargetRegistry::RegisterMCAsmInfo(T, &Allocator);
|
||||
}
|
||||
private:
|
||||
static MCAsmInfo *Allocator(const Target &T, StringRef TT) {
|
||||
return new MCAsmInfoImpl(T, TT);
|
||||
static MCAsmInfo *Allocator(StringRef TT) {
|
||||
return new MCAsmInfoImpl(TT);
|
||||
}
|
||||
|
||||
};
|
||||
|
@ -57,7 +57,7 @@ static MCRegisterInfo *createAArch64MCRegisterInfo(StringRef Triple) {
|
||||
return X;
|
||||
}
|
||||
|
||||
static MCAsmInfo *createAArch64MCAsmInfo(const Target &T, StringRef TT) {
|
||||
static MCAsmInfo *createAArch64MCAsmInfo(StringRef TT) {
|
||||
Triple TheTriple(TT);
|
||||
|
||||
MCAsmInfo *MAI = new AArch64ELFMCAsmInfo();
|
||||
|
@ -159,7 +159,7 @@ static MCRegisterInfo *createARMMCRegisterInfo(StringRef Triple) {
|
||||
return X;
|
||||
}
|
||||
|
||||
static MCAsmInfo *createARMMCAsmInfo(const Target &T, StringRef TT) {
|
||||
static MCAsmInfo *createARMMCAsmInfo(StringRef TT) {
|
||||
Triple TheTriple(TT);
|
||||
|
||||
if (TheTriple.isOSDarwin())
|
||||
|
@ -15,7 +15,7 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
HexagonMCAsmInfo::HexagonMCAsmInfo(const Target &T, StringRef TT) {
|
||||
HexagonMCAsmInfo::HexagonMCAsmInfo(StringRef TT) {
|
||||
Data16bitsDirective = "\t.half\t";
|
||||
Data32bitsDirective = "\t.word\t";
|
||||
Data64bitsDirective = 0; // .xword is only supported by V9.
|
||||
|
@ -18,11 +18,9 @@
|
||||
#include "llvm/MC/MCAsmInfo.h"
|
||||
|
||||
namespace llvm {
|
||||
class Target;
|
||||
|
||||
class HexagonMCAsmInfo : public MCAsmInfo {
|
||||
public:
|
||||
explicit HexagonMCAsmInfo(const Target &T, StringRef TT);
|
||||
explicit HexagonMCAsmInfo(StringRef TT);
|
||||
};
|
||||
|
||||
} // namespace llvm
|
||||
|
@ -54,8 +54,8 @@ static MCSubtargetInfo *createHexagonMCSubtargetInfo(StringRef TT,
|
||||
return X;
|
||||
}
|
||||
|
||||
static MCAsmInfo *createHexagonMCAsmInfo(const Target &T, StringRef TT) {
|
||||
MCAsmInfo *MAI = new HexagonMCAsmInfo(T, TT);
|
||||
static MCAsmInfo *createHexagonMCAsmInfo(StringRef TT) {
|
||||
MCAsmInfo *MAI = new HexagonMCAsmInfo(TT);
|
||||
|
||||
// VirtualFP = (R30 + #0).
|
||||
MachineLocation Dst(MachineLocation::VirtualFP);
|
||||
|
@ -53,7 +53,7 @@ static MCSubtargetInfo *createMBlazeMCSubtargetInfo(StringRef TT, StringRef CPU,
|
||||
return X;
|
||||
}
|
||||
|
||||
static MCAsmInfo *createMCAsmInfo(const Target &T, StringRef TT) {
|
||||
static MCAsmInfo *createMCAsmInfo(StringRef TT) {
|
||||
Triple TheTriple(TT);
|
||||
switch (TheTriple.getOS()) {
|
||||
default:
|
||||
|
@ -17,7 +17,7 @@ using namespace llvm;
|
||||
|
||||
void MSP430MCAsmInfo::anchor() { }
|
||||
|
||||
MSP430MCAsmInfo::MSP430MCAsmInfo(const Target &T, StringRef TT) {
|
||||
MSP430MCAsmInfo::MSP430MCAsmInfo(StringRef TT) {
|
||||
PointerSize = CalleeSaveStackSlotSize = 2;
|
||||
|
||||
PrivateGlobalPrefix = ".L";
|
||||
|
@ -18,12 +18,11 @@
|
||||
|
||||
namespace llvm {
|
||||
class StringRef;
|
||||
class Target;
|
||||
|
||||
class MSP430MCAsmInfo : public MCAsmInfo {
|
||||
virtual void anchor();
|
||||
public:
|
||||
explicit MSP430MCAsmInfo(const Target &T, StringRef TT);
|
||||
explicit MSP430MCAsmInfo(StringRef TT);
|
||||
};
|
||||
|
||||
} // namespace llvm
|
||||
|
@ -18,7 +18,7 @@ using namespace llvm;
|
||||
|
||||
void MipsMCAsmInfo::anchor() { }
|
||||
|
||||
MipsMCAsmInfo::MipsMCAsmInfo(const Target &T, StringRef TT) {
|
||||
MipsMCAsmInfo::MipsMCAsmInfo(StringRef TT) {
|
||||
Triple TheTriple(TT);
|
||||
if ((TheTriple.getArch() == Triple::mips) ||
|
||||
(TheTriple.getArch() == Triple::mips64))
|
||||
|
@ -18,12 +18,11 @@
|
||||
|
||||
namespace llvm {
|
||||
class StringRef;
|
||||
class Target;
|
||||
|
||||
class MipsMCAsmInfo : public MCAsmInfo {
|
||||
virtual void anchor();
|
||||
public:
|
||||
explicit MipsMCAsmInfo(const Target &T, StringRef TT);
|
||||
explicit MipsMCAsmInfo(StringRef TT);
|
||||
};
|
||||
|
||||
} // namespace llvm
|
||||
|
@ -93,8 +93,8 @@ static MCSubtargetInfo *createMipsMCSubtargetInfo(StringRef TT, StringRef CPU,
|
||||
return X;
|
||||
}
|
||||
|
||||
static MCAsmInfo *createMipsMCAsmInfo(const Target &T, StringRef TT) {
|
||||
MCAsmInfo *MAI = new MipsMCAsmInfo(T, TT);
|
||||
static MCAsmInfo *createMipsMCAsmInfo(StringRef TT) {
|
||||
MCAsmInfo *MAI = new MipsMCAsmInfo(TT);
|
||||
|
||||
MachineLocation Dst(MachineLocation::VirtualFP);
|
||||
MachineLocation Src(Mips::SP, 0);
|
||||
|
@ -27,7 +27,7 @@ Debug("debug-compile", cl::desc("Compile for debugging"), cl::Hidden,
|
||||
|
||||
void NVPTXMCAsmInfo::anchor() {}
|
||||
|
||||
NVPTXMCAsmInfo::NVPTXMCAsmInfo(const Target &T, const StringRef &TT) {
|
||||
NVPTXMCAsmInfo::NVPTXMCAsmInfo(const StringRef &TT) {
|
||||
Triple TheTriple(TT);
|
||||
if (TheTriple.getArch() == Triple::nvptx64) {
|
||||
PointerSize = CalleeSaveStackSlotSize = 8;
|
||||
|
@ -23,7 +23,7 @@ class StringRef;
|
||||
class NVPTXMCAsmInfo : public MCAsmInfo {
|
||||
virtual void anchor();
|
||||
public:
|
||||
explicit NVPTXMCAsmInfo(const Target &T, const StringRef &TT);
|
||||
explicit NVPTXMCAsmInfo(const StringRef &TT);
|
||||
};
|
||||
} // namespace llvm
|
||||
|
||||
|
@ -58,7 +58,7 @@ static MCSubtargetInfo *createPPCMCSubtargetInfo(StringRef TT, StringRef CPU,
|
||||
return X;
|
||||
}
|
||||
|
||||
static MCAsmInfo *createPPCMCAsmInfo(const Target &T, StringRef TT) {
|
||||
static MCAsmInfo *createPPCMCAsmInfo(StringRef TT) {
|
||||
Triple TheTriple(TT);
|
||||
bool isPPC64 = TheTriple.getArch() == Triple::ppc64;
|
||||
|
||||
|
@ -18,7 +18,7 @@ using namespace llvm;
|
||||
|
||||
void SparcELFMCAsmInfo::anchor() { }
|
||||
|
||||
SparcELFMCAsmInfo::SparcELFMCAsmInfo(const Target &T, StringRef TT) {
|
||||
SparcELFMCAsmInfo::SparcELFMCAsmInfo(StringRef TT) {
|
||||
IsLittleEndian = false;
|
||||
Triple TheTriple(TT);
|
||||
if (TheTriple.getArch() == Triple::sparcv9) {
|
||||
|
@ -18,12 +18,11 @@
|
||||
|
||||
namespace llvm {
|
||||
class StringRef;
|
||||
class Target;
|
||||
|
||||
class SparcELFMCAsmInfo : public MCAsmInfo {
|
||||
virtual void anchor();
|
||||
public:
|
||||
explicit SparcELFMCAsmInfo(const Target &T, StringRef TT);
|
||||
explicit SparcELFMCAsmInfo(StringRef TT);
|
||||
};
|
||||
|
||||
} // namespace llvm
|
||||
|
@ -13,7 +13,7 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
SystemZMCAsmInfo::SystemZMCAsmInfo(const Target &T, StringRef TT) {
|
||||
SystemZMCAsmInfo::SystemZMCAsmInfo(StringRef TT) {
|
||||
PointerSize = 8;
|
||||
CalleeSaveStackSlotSize = 8;
|
||||
IsLittleEndian = false;
|
||||
|
@ -14,12 +14,11 @@
|
||||
#include "llvm/Support/Compiler.h"
|
||||
|
||||
namespace llvm {
|
||||
class Target;
|
||||
class StringRef;
|
||||
|
||||
class SystemZMCAsmInfo : public MCAsmInfo {
|
||||
public:
|
||||
explicit SystemZMCAsmInfo(const Target &T, StringRef TT);
|
||||
explicit SystemZMCAsmInfo(StringRef TT);
|
||||
|
||||
// Override MCAsmInfo;
|
||||
virtual const MCSection *getNonexecutableStackSection(MCContext &Ctx) const
|
||||
|
@ -27,8 +27,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
static MCAsmInfo *createSystemZMCAsmInfo(const Target &T, StringRef TT) {
|
||||
MCAsmInfo *MAI = new SystemZMCAsmInfo(T, TT);
|
||||
static MCAsmInfo *createSystemZMCAsmInfo(StringRef TT) {
|
||||
MCAsmInfo *MAI = new SystemZMCAsmInfo(TT);
|
||||
MachineLocation FPDst(MachineLocation::VirtualFP);
|
||||
MachineLocation FPSrc(SystemZ::R15D, -SystemZMC::CFAOffsetFromInitialSP);
|
||||
MAI->addInitialFrameState(0, FPDst, FPSrc);
|
||||
|
@ -263,7 +263,7 @@ static MCRegisterInfo *createX86MCRegisterInfo(StringRef TT) {
|
||||
return X;
|
||||
}
|
||||
|
||||
static MCAsmInfo *createX86MCAsmInfo(const Target &T, StringRef TT) {
|
||||
static MCAsmInfo *createX86MCAsmInfo(StringRef TT) {
|
||||
Triple TheTriple(TT);
|
||||
bool is64Bit = TheTriple.getArch() == Triple::x86_64;
|
||||
|
||||
|
@ -13,7 +13,7 @@ using namespace llvm;
|
||||
|
||||
void XCoreMCAsmInfo::anchor() { }
|
||||
|
||||
XCoreMCAsmInfo::XCoreMCAsmInfo(const Target &T, StringRef TT) {
|
||||
XCoreMCAsmInfo::XCoreMCAsmInfo(StringRef TT) {
|
||||
SupportsDebugInformation = true;
|
||||
Data16bitsDirective = "\t.short\t";
|
||||
Data32bitsDirective = "\t.long\t";
|
||||
|
@ -23,7 +23,7 @@ namespace llvm {
|
||||
class XCoreMCAsmInfo : public MCAsmInfo {
|
||||
virtual void anchor();
|
||||
public:
|
||||
explicit XCoreMCAsmInfo(const Target &T, StringRef TT);
|
||||
explicit XCoreMCAsmInfo(StringRef TT);
|
||||
};
|
||||
|
||||
} // namespace llvm
|
||||
|
@ -51,8 +51,8 @@ static MCSubtargetInfo *createXCoreMCSubtargetInfo(StringRef TT, StringRef CPU,
|
||||
return X;
|
||||
}
|
||||
|
||||
static MCAsmInfo *createXCoreMCAsmInfo(const Target &T, StringRef TT) {
|
||||
MCAsmInfo *MAI = new XCoreMCAsmInfo(T, TT);
|
||||
static MCAsmInfo *createXCoreMCAsmInfo(StringRef TT) {
|
||||
MCAsmInfo *MAI = new XCoreMCAsmInfo(TT);
|
||||
|
||||
// Initial state of the frame pointer is SP.
|
||||
MachineLocation Dst(MachineLocation::VirtualFP);
|
||||
|
Loading…
Reference in New Issue
Block a user