diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-10-20 04:33:44 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2011-10-20 04:33:44 +0000 |
commit | d7e5264b462738084649310055ba8baea33fe9c8 (patch) | |
tree | ccfb1824adb512c31971c3d1f0a83b02f3e510eb /include/llvm/BasicBlock.h | |
parent | 531afb166c28d20b34de657ef772694e30775ca0 (diff) |
Remove useless code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142570 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/BasicBlock.h')
-rw-r--r-- | include/llvm/BasicBlock.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/llvm/BasicBlock.h b/include/llvm/BasicBlock.h index 1cd8dc55ab..da4f92100d 100644 --- a/include/llvm/BasicBlock.h +++ b/include/llvm/BasicBlock.h @@ -110,12 +110,6 @@ public: const Function *getParent() const { return Parent; } Function *getParent() { return Parent; } - /// use_back - Specialize the methods defined in Value, as we know that an - /// BasicBlock can only be used by Users (specifically terminators - /// and BlockAddress's). - User *use_back() { return cast<User>(*use_begin());} - const User *use_back() const { return cast<User>(*use_begin());} - /// getTerminator() - If this is a well formed basic block, then this returns /// a pointer to the terminator instruction. If it is not, then you get a /// null pointer back. |