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

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