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 | ae670d5895e4bf1a3c0c95e20ad3769340ac2966 (patch) | |
| tree | ee65bf5601525beadc41b4d573c23a2a5ca92710 | |
| parent | 6500c6d332a50b6a153d57cabd9bf21c6f8e7ac2 (diff) | |
| download | bcm5719-llvm-ae670d5895e4bf1a3c0c95e20ad3769340ac2966.tar.gz bcm5719-llvm-ae670d5895e4bf1a3c0c95e20ad3769340ac2966.zip | |
Do not provide the non-specialized PowerPCJITInfo object, it is pretty useless.
Instead, let derived classes provide specialized ones.
llvm-svn: 18139
| -rw-r--r-- | llvm/lib/Target/PowerPC/PowerPCTargetMachine.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/llvm/lib/Target/PowerPC/PowerPCTargetMachine.h b/llvm/lib/Target/PowerPC/PowerPCTargetMachine.h index 0f8e7fb4d53..7c5893f904f 100644 --- a/llvm/lib/Target/PowerPC/PowerPCTargetMachine.h +++ b/llvm/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); |

