diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-02 23:37:13 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-02 23:37:13 +0000 |
commit | c3719c36e61f6ac28fc1e12587131bcae6581671 (patch) | |
tree | 774ba7501ce13f5da38e87518ef98535c0ded3ea /llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp | |
parent | 71fc19e9911e234761151867079764c942f3b7bf (diff) | |
download | llvm-c3719c36e61f6ac28fc1e12587131bcae6581671.zip llvm-c3719c36e61f6ac28fc1e12587131bcae6581671.tar.gz llvm-c3719c36e61f6ac28fc1e12587131bcae6581671.tar.bz2 |
Move most targets TargetMachine constructor to only taking a target triple.
- The C, C++, MSIL, and Mips backends still need the module.
llvm-svn: 77927
Diffstat (limited to 'llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp b/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp index 6a9c10c..51b31a9 100644 --- a/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp +++ b/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp @@ -13,7 +13,6 @@ #include "SystemZTargetAsmInfo.h" #include "SystemZTargetMachine.h" #include "SystemZ.h" -#include "llvm/Module.h" #include "llvm/PassManager.h" #include "llvm/Target/TargetRegistry.h" using namespace llvm; @@ -30,10 +29,10 @@ const TargetAsmInfo *SystemZTargetMachine::createTargetAsmInfo() const { /// SystemZTargetMachine ctor - Create an ILP64 architecture model /// SystemZTargetMachine::SystemZTargetMachine(const Target &T, - const Module &M, + const std::string &TT, const std::string &FS) : LLVMTargetMachine(T), - Subtarget(M.getTargetTriple(), FS), + Subtarget(TT, FS), DataLayout("E-p:64:64:64-i8:8:16-i16:16:16-i32:32:32-i64:64:64-f32:32:32" "-f64:64:64-f128:128:128-a0:16:16"), InstrInfo(*this), TLInfo(*this), @@ -49,14 +48,3 @@ bool SystemZTargetMachine::addInstSelector(PassManagerBase &PM, PM.add(createSystemZISelDag(*this, OptLevel)); return false; } - -unsigned SystemZTargetMachine::getModuleMatchQuality(const Module &M) { - std::string TT = M.getTargetTriple(); - - // We strongly match s390x - if (TT.size() >= 5 && TT[0] == 's' && TT[1] == '3' && TT[2] == '9' && - TT[3] == '0' && TT[4] == 'x') - return 20; - - return 0; -} |