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:
Rafael Espindola 2013-05-10 18:16:59 +00:00
parent 50be71d182
commit 6e53180db1
24 changed files with 31 additions and 38 deletions

View File

@ -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);
}
};

View File

@ -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();

View File

@ -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())

View File

@ -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.

View File

@ -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

View File

@ -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);

View File

@ -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:

View File

@ -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";

View File

@ -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

View File

@ -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))

View File

@ -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

View File

@ -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);

View File

@ -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;

View File

@ -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

View File

@ -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;

View File

@ -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) {

View File

@ -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

View File

@ -13,7 +13,7 @@
using namespace llvm;
SystemZMCAsmInfo::SystemZMCAsmInfo(const Target &T, StringRef TT) {
SystemZMCAsmInfo::SystemZMCAsmInfo(StringRef TT) {
PointerSize = 8;
CalleeSaveStackSlotSize = 8;
IsLittleEndian = false;

View File

@ -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

View File

@ -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);

View File

@ -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;

View File

@ -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";

View File

@ -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

View File

@ -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);