diff options
author | Chris Lattner <sabre@nondot.org> | 2002-12-13 07:30:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-12-13 07:30:45 +0000 |
commit | 3153b35a520f40954c2bded460e0b055f15727b9 (patch) | |
tree | e82f1537833e13f7daf55c116175eac2b21afd2e /include/llvm/CodeGen/MachineBasicBlock.h | |
parent | 4373140d8a194b2e0797097667fc3b88108b1544 (diff) |
Get rid of deprecated function
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4997 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineBasicBlock.h')
-rw-r--r-- | include/llvm/CodeGen/MachineBasicBlock.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/MachineBasicBlock.h b/include/llvm/CodeGen/MachineBasicBlock.h index dfa8e0d183..a2f26891de 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. /// |