diff options
author | Stuart Hastings <stuart@apple.com> | 2009-07-15 17:27:11 +0000 |
---|---|---|
committer | Stuart Hastings <stuart@apple.com> | 2009-07-15 17:27:11 +0000 |
commit | 338191cd67a0a3e324c8b1475c975fed5ffa9e94 (patch) | |
tree | eef241f50ca61beb5959953f38fdd29594a20597 /llvm/lib/Target/Mips/MipsTargetMachine.h | |
parent | c5928d2fad2313bf8e582fec74b2b9a385f350e7 (diff) | |
download | bcm5719-llvm-338191cd67a0a3e324c8b1475c975fed5ffa9e94.tar.gz bcm5719-llvm-338191cd67a0a3e324c8b1475c975fed5ffa9e94.zip |
Revert 75762, 75763, 75766..75769, 75772..75775, 75778, 75780, 75782 to repair broken LLVM-GCC build.
Will revert 75770 in the llvm-gcc trunk.
llvm-svn: 75799
Diffstat (limited to 'llvm/lib/Target/Mips/MipsTargetMachine.h')
-rw-r--r-- | llvm/lib/Target/Mips/MipsTargetMachine.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/llvm/lib/Target/Mips/MipsTargetMachine.h b/llvm/lib/Target/Mips/MipsTargetMachine.h index 6e2562a312e..7dd8d2befa0 100644 --- a/llvm/lib/Target/Mips/MipsTargetMachine.h +++ b/llvm/lib/Target/Mips/MipsTargetMachine.h @@ -38,13 +38,12 @@ namespace llvm { // asmprinter set this functions to ctor pointer at startup time if they are // linked in. typedef FunctionPass *(*AsmPrinterCtorFn)(formatted_raw_ostream &o, - TargetMachine &tm, + MipsTargetMachine &tm, bool verbose); static AsmPrinterCtorFn AsmPrinterCtor; public: - MipsTargetMachine(const Target &T, const Module &M, const std::string &FS, - bool isLittle); + MipsTargetMachine(const Module &M, const std::string &FS, bool isLittle); static void registerAsmPrinter(AsmPrinterCtorFn F) { AsmPrinterCtor = F; @@ -67,6 +66,8 @@ namespace llvm { return const_cast<MipsTargetLowering*>(&TLInfo); } + static unsigned getModuleMatchQuality(const Module &M); + // Pass Pipeline Configuration virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel); @@ -81,7 +82,7 @@ namespace llvm { /// class MipselTargetMachine : public MipsTargetMachine { public: - MipselTargetMachine(const Target &T, const Module &M, const std::string &FS); + MipselTargetMachine(const Module &M, const std::string &FS); static unsigned getModuleMatchQuality(const Module &M); }; |