mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
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:
parent
b1b266ca9c
commit
406dccea99
@ -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) {}
|
||||
|
||||
|
@ -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.
|
||||
|
@ -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();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user