Get rid of deprecated function
authorChris Lattner <sabre@nondot.org>
Fri, 13 Dec 2002 07:30:45 +0000 (07:30 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 13 Dec 2002 07:30:45 +0000 (07:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4997 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/MachineBasicBlock.h

index dfa8e0d183ce3d8a400a274cbaf32c1a9ce3cc16..a2f26891def6fd64bf512395a27341ff53077551 100644 (file)
@@ -20,11 +20,6 @@ public:
   MachineBasicBlock(BasicBlock *bb = 0) : Prev(0), Next(0), BB(bb) {}
   ~MachineBasicBlock() {}
   
-  // get - This deprecated static method returns the MachineBasicBlock object
-  // for the specified BasicBlock.
-  //
-  static MachineBasicBlock& get(const BasicBlock *BB);
-
   /// getBasicBlock - Return the LLVM basic block that this instance
   /// corresponded to originally.
   ///