Now that the optimization level is adjusting the feature string

before we hit the subtarget, remove the constructor parameter.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218817 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2014-10-01 21:05:35 +00:00
parent b1b266ca9c
commit 406dccea99
3 changed files with 4 additions and 9 deletions

View File

@ -74,13 +74,12 @@ PPCSubtarget &PPCSubtarget::initializeSubtargetDependencies(StringRef CPU,
}
PPCSubtarget::PPCSubtarget(const std::string &TT, const std::string &CPU,
const std::string &FS, PPCTargetMachine &TM,
CodeGenOpt::Level OptLevel)
const std::string &FS, PPCTargetMachine &TM)
: PPCGenSubtargetInfo(TT, CPU, FS), TargetTriple(TT),
DL(getDataLayoutString(TargetTriple)),
IsPPC64(TargetTriple.getArch() == Triple::ppc64 ||
TargetTriple.getArch() == Triple::ppc64le),
OptLevel(OptLevel), TargetABI(PPC_ABI_UNKNOWN),
TargetABI(PPC_ABI_UNKNOWN),
FrameLowering(initializeSubtargetDependencies(CPU, FS)), InstrInfo(*this),
TLInfo(TM), TSInfo(&DL) {}

View File

@ -111,9 +111,6 @@ protected:
bool HasLazyResolverStubs;
bool IsLittleEndian;
/// OptLevel - What default optimization level we're emitting code for.
CodeGenOpt::Level OptLevel;
enum {
PPC_ABI_UNKNOWN,
PPC_ABI_ELFv1,
@ -130,8 +127,7 @@ public:
/// of the specified triple.
///
PPCSubtarget(const std::string &TT, const std::string &CPU,
const std::string &FS, PPCTargetMachine &TM,
CodeGenOpt::Level OptLevel);
const std::string &FS, PPCTargetMachine &TM);
/// ParseSubtargetFeatures - Parses features string setting specified
/// subtarget options. Definition of function is auto generated by tblgen.

View File

@ -69,7 +69,7 @@ PPCTargetMachine::PPCTargetMachine(const Target &T, StringRef TT, StringRef CPU,
CodeGenOpt::Level OL)
: LLVMTargetMachine(T, TT, CPU, computeFSAdditions(FS, OL, TT), Options, RM,
CM, OL),
Subtarget(TT, CPU, TargetFS, *this, OL) {
Subtarget(TT, CPU, TargetFS, *this) {
initAsmInfo();
}