diff options
author | Chris Lattner <sabre@nondot.org> | 2004-11-23 05:55:38 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-11-23 05:55:38 +0000 |
commit | 942d7b5a68d58e05a6dbfc3a83e31274c13d85e6 (patch) | |
tree | dc4ee6884db6fd0927831e1a3160619497cbfe11 /lib/Target/PowerPC/PowerPCTargetMachine.h | |
parent | 6540c6c344ec09fc2a3e9ffe3424a0a09c225e05 (diff) |
Do not provide the non-specialized PowerPCJITInfo object, it is pretty useless.
Instead, let derived classes provide specialized ones.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18139 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PowerPCTargetMachine.h')
-rw-r--r-- | lib/Target/PowerPC/PowerPCTargetMachine.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/Target/PowerPC/PowerPCTargetMachine.h b/lib/Target/PowerPC/PowerPCTargetMachine.h index 0f8e7fb4d5..7c5893f904 100644 --- a/lib/Target/PowerPC/PowerPCTargetMachine.h +++ b/lib/Target/PowerPC/PowerPCTargetMachine.h @@ -15,7 +15,6 @@ #define POWERPC_TARGETMACHINE_H #include "PowerPCFrameInfo.h" -#include "PowerPCJITInfo.h" #include "llvm/Target/TargetMachine.h" #include "llvm/PassManager.h" #include <set> @@ -27,19 +26,12 @@ class IntrinsicLowering; class PowerPCTargetMachine : public TargetMachine { PowerPCFrameInfo FrameInfo; - PowerPCJITInfo JITInfo; protected: PowerPCTargetMachine(const std::string &name, IntrinsicLowering *IL, - const TargetData &TD, const PowerPCFrameInfo &TFI, - const PowerPCJITInfo &TJI); + const TargetData &TD, const PowerPCFrameInfo &TFI); public: virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; } - virtual TargetJITInfo *getJITInfo() { - return &JITInfo; - } - - static unsigned getJITMatchQuality(); virtual bool addPassesToEmitAssembly(PassManager &PM, std::ostream &Out); |