diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-02 22:11:08 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-02 22:11:08 +0000 |
commit | 3be03406c9c3b2075d5ae416499af2f15f703d6f (patch) | |
tree | c44ecdea2343ba2b7689ee79d2e599483a48a4ac /lib/Target/Mips/MipsSubtarget.cpp | |
parent | 1391cc19d0d0dec015bfc0130e4238cacd19fbf2 (diff) |
Normalize Subtarget constructors to take a target triple string instead of
Module*.
Also, dropped uses of TargetMachine where unnecessary. The only target which
still takes a TargetMachine& is Mips, I would appreciate it if someone would
normalize this to match other targets.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77918 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsSubtarget.cpp')
-rw-r--r-- | lib/Target/Mips/MipsSubtarget.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Target/Mips/MipsSubtarget.cpp b/lib/Target/Mips/MipsSubtarget.cpp index 87c2208e9d..c56bc9d290 100644 --- a/lib/Target/Mips/MipsSubtarget.cpp +++ b/lib/Target/Mips/MipsSubtarget.cpp @@ -14,7 +14,6 @@ #include "MipsSubtarget.h" #include "Mips.h" #include "MipsGenSubtarget.inc" -#include "llvm/Module.h" #include "llvm/Support/CommandLine.h" using namespace llvm; @@ -25,7 +24,7 @@ static cl::opt<bool> AbsoluteCall("enable-mips-absolute-call", cl::Hidden, cl::desc("Enable absolute call within abicall")); -MipsSubtarget::MipsSubtarget(const TargetMachine &TM, const Module &M, +MipsSubtarget::MipsSubtarget(const TargetMachine &TM, const std::string &TT, const std::string &FS, bool little) : MipsArchVersion(Mips1), MipsABI(O32), IsLittle(little), IsSingleFloat(false), IsFP64bit(false), IsGP64bit(false), HasVFPU(false), HasABICall(true), @@ -37,7 +36,6 @@ MipsSubtarget::MipsSubtarget(const TargetMachine &TM, const Module &M, // Parse features string. ParseSubtargetFeatures(FS, CPU); - const std::string& TT = M.getTargetTriple(); // Is the target system Linux ? if (TT.find("linux") == std::string::npos) |