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/X86/X86TargetMachine.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/X86/X86TargetMachine.h')
-rw-r--r-- | llvm/lib/Target/X86/X86TargetMachine.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/llvm/lib/Target/X86/X86TargetMachine.h b/llvm/lib/Target/X86/X86TargetMachine.h index da6811bd236..ea7a453a1ad 100644 --- a/llvm/lib/Target/X86/X86TargetMachine.h +++ b/llvm/lib/Target/X86/X86TargetMachine.h @@ -44,13 +44,12 @@ protected: // To avoid having target depend on the asmprinter stuff libraries, asmprinter // set this functions to ctor pointer at startup time if they are linked in. typedef FunctionPass *(*AsmPrinterCtorFn)(formatted_raw_ostream &o, - TargetMachine &tm, + X86TargetMachine &tm, bool verbose); static AsmPrinterCtorFn AsmPrinterCtor; public: - X86TargetMachine(const Target &T, const Module &M, const std::string &FS, - bool is64Bit); + X86TargetMachine(const Module &M, const std::string &FS, bool is64Bit); virtual const X86InstrInfo *getInstrInfo() const { return &InstrInfo; } virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; } @@ -67,6 +66,9 @@ public: return Subtarget.isTargetELF() ? &ELFWriterInfo : 0; } + static unsigned getModuleMatchQuality(const Module &M); + static unsigned getJITMatchQuality(); + static void registerAsmPrinter(AsmPrinterCtorFn F) { AsmPrinterCtor = F; } @@ -99,7 +101,7 @@ public: /// class X86_32TargetMachine : public X86TargetMachine { public: - X86_32TargetMachine(const Target &T, const Module &M, const std::string &FS); + X86_32TargetMachine(const Module &M, const std::string &FS); static unsigned getJITMatchQuality(); static unsigned getModuleMatchQuality(const Module &M); @@ -109,7 +111,7 @@ public: /// class X86_64TargetMachine : public X86TargetMachine { public: - X86_64TargetMachine(const Target &T, const Module &M, const std::string &FS); + X86_64TargetMachine(const Module &M, const std::string &FS); static unsigned getJITMatchQuality(); static unsigned getModuleMatchQuality(const Module &M); |