aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-06-02 05:53:52 +0000
committerChris Lattner <sabre@nondot.org>2004-06-02 05:53:52 +0000
commit289809d139aae43187ca68a931de0efb66344b2e (patch)
tree0ada92b2a14bb6bb5fc1546ba5e2c490cff44402
parent36c2a0593509da714bea6457dd1b00a7417ce342 (diff)
Stubs are no longer needed
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13951 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/CBackend/CTargetMachine.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/Target/CBackend/CTargetMachine.h b/lib/Target/CBackend/CTargetMachine.h
index 1574fee4a2..97f880d2fd 100644
--- a/lib/Target/CBackend/CTargetMachine.h
+++ b/lib/Target/CBackend/CTargetMachine.h
@@ -23,11 +23,6 @@ struct CTargetMachine : public TargetMachine {
CTargetMachine(const Module &M, IntrinsicLowering *IL) :
TargetMachine("CBackend", IL, M) {}
- virtual const TargetInstrInfo &getInstrInfo() const { abort(); }
- virtual const TargetFrameInfo &getFrameInfo() const { abort(); }
- virtual const TargetSchedInfo &getSchedInfo() const { abort(); }
- virtual const TargetRegInfo &getRegInfo() const { abort(); }
-
// This is the only thing that actually does anything here.
virtual bool addPassesToEmitAssembly(PassManager &PM, std::ostream &Out);
};