Stubs are no longer needed
authorChris Lattner <sabre@nondot.org>
Wed, 2 Jun 2004 05:53:52 +0000 (05:53 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 2 Jun 2004 05:53:52 +0000 (05:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13951 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/CBackend/CTargetMachine.h

index 1574fee4a2522b19e1ff331e2666fded9a8d28a9..97f880d2fd68e8821fea4f9e2ec168385b884a55 100644 (file)
@@ -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);
 };