summaryrefslogtreecommitdiff
path: root/lib/Target/Alpha/AlphaTargetMachine.h
diff options
context:
space:
mode:
authorAndrew Lenharth <andrewl@lenharth.org>2005-01-24 18:48:22 +0000
committerAndrew Lenharth <andrewl@lenharth.org>2005-01-24 18:48:22 +0000
commita7246caf8ff6f26eaad40962bcc9c2e48af7776c (patch)
tree330abbcc0c7db7a004316c0ca9b6ab7e42bcebb7 /lib/Target/Alpha/AlphaTargetMachine.h
parent886470efec48705831d950c41f35482bfc9ef6ca (diff)
downloadllvm-a7246caf8ff6f26eaad40962bcc9c2e48af7776c.tar.gz
llvm-a7246caf8ff6f26eaad40962bcc9c2e48af7776c.tar.bz2
llvm-a7246caf8ff6f26eaad40962bcc9c2e48af7776c.tar.xz
Alpha JIT prune
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19815 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaTargetMachine.h')
-rw-r--r--lib/Target/Alpha/AlphaTargetMachine.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/Target/Alpha/AlphaTargetMachine.h b/lib/Target/Alpha/AlphaTargetMachine.h
index af186018ab..2eb1e210c1 100644
--- a/lib/Target/Alpha/AlphaTargetMachine.h
+++ b/lib/Target/Alpha/AlphaTargetMachine.h
@@ -18,7 +18,6 @@
#include "llvm/Target/TargetFrameInfo.h"
#include "llvm/PassManager.h"
#include "AlphaInstrInfo.h"
-//#include "AlphaJITInfo.h"
namespace llvm {
@@ -28,7 +27,6 @@ class IntrinsicLowering;
class AlphaTargetMachine : public TargetMachine {
AlphaInstrInfo InstrInfo;
TargetFrameInfo FrameInfo;
- // AlphaJITInfo JITInfo;
public:
AlphaTargetMachine(const Module &M, IntrinsicLowering *IL);
@@ -38,13 +36,7 @@ public:
virtual const MRegisterInfo *getRegisterInfo() const {
return &InstrInfo.getRegisterInfo();
}
- // virtual TargetJITInfo *getJITInfo() {
- // return &JITInfo;
- // }
- virtual bool addPassesToEmitMachineCode(FunctionPassManager &PM,
- MachineCodeEmitter &MCE);
-
virtual bool addPassesToEmitAssembly(PassManager &PM, std::ostream &Out);
};