diff options
author | Chris Lattner <sabre@nondot.org> | 2006-09-03 18:44:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-09-03 18:44:02 +0000 |
commit | c4fa386471cb1ff9d1f2acc24e2d0682e5a17b1b (patch) | |
tree | 91f34aefabe78b75264cfd83fb60dd87f2410f81 /lib/Target/PowerPC/PPCTargetMachine.cpp | |
parent | de1cce7e14dd3cb4897d60132d72d87de314a5ac (diff) |
Simplify target construction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30070 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCTargetMachine.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPCTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCTargetMachine.cpp b/lib/Target/PowerPC/PPCTargetMachine.cpp index 51586dc85b..811e18992d 100644 --- a/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/lib/Target/PowerPC/PPCTargetMachine.cpp @@ -85,7 +85,7 @@ unsigned PPC64TargetMachine::getModuleMatchQuality(const Module &M) { PPCTargetMachine::PPCTargetMachine(const Module &M, const std::string &FS, bool is64Bit) - : TargetMachine("PowerPC"), Subtarget(M, FS, is64Bit), + : Subtarget(M, FS, is64Bit), DataLayout(Subtarget.getTargetDataString()), InstrInfo(*this), FrameInfo(*this, false), JITInfo(*this, is64Bit), TLInfo(*this), InstrItins(Subtarget.getInstrItineraryData()) { |