From 3153b35a520f40954c2bded460e0b055f15727b9 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 13 Dec 2002 07:30:45 +0000 Subject: [PATCH] Get rid of deprecated function git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4997 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/MachineBasicBlock.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/llvm/CodeGen/MachineBasicBlock.h b/include/llvm/CodeGen/MachineBasicBlock.h index dfa8e0d183c..a2f26891def 100644 --- a/include/llvm/CodeGen/MachineBasicBlock.h +++ b/include/llvm/CodeGen/MachineBasicBlock.h @@ -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. ///