aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2014-10-01 21:05:35 +0000
committerEric Christopher <echristo@gmail.com>2014-10-01 21:05:35 +0000
commiteb6e3bbf470e7fe137f34326d76f08fac798a454 (patch)
treefafe2a5cac028c70a0fbaf3a0d7588005305154e /llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
parentb21e033b2ab9fd446dad829e6831e782a4168ba6 (diff)
downloadllvm-eb6e3bbf470e7fe137f34326d76f08fac798a454.zip
llvm-eb6e3bbf470e7fe137f34326d76f08fac798a454.tar.gz
llvm-eb6e3bbf470e7fe137f34326d76f08fac798a454.tar.bz2
Now that the optimization level is adjusting the feature string
before we hit the subtarget, remove the constructor parameter. llvm-svn: 218817
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCTargetMachine.cpp')
-rw-r--r--llvm/lib/Target/PowerPC/PPCTargetMachine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp b/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
index 908e159..6645734 100644
--- a/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
+++ b/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
@@ -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();
}