diff options
author | Jim Laskey <jlaskey@mac.com> | 2007-02-22 16:39:03 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2007-02-22 16:39:03 +0000 |
commit | 033c9715d9bf7ce59ad2e466bf0720811b34da08 (patch) | |
tree | 6898e30b4530ac3362a3207a437cd085a5d5d33a /include | |
parent | a4e7cd947e378aa3ffe633be227138d8f859c9e3 (diff) | |
download | external_llvm-033c9715d9bf7ce59ad2e466bf0720811b34da08.zip external_llvm-033c9715d9bf7ce59ad2e466bf0720811b34da08.tar.gz external_llvm-033c9715d9bf7ce59ad2e466bf0720811b34da08.tar.bz2 |
Remove isAccessable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34497 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/MachineBasicBlock.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/MachineBasicBlock.h b/include/llvm/CodeGen/MachineBasicBlock.h index ed2219b..1cb6e0b 100644 --- a/include/llvm/CodeGen/MachineBasicBlock.h +++ b/include/llvm/CodeGen/MachineBasicBlock.h @@ -165,10 +165,6 @@ public: /// this basic block is entered via an exception handler. void setIsLandingPad() { IsLandingPad = true; } - /// isAccessable - Returns true if the block is alive. That is, if it has - /// predecessors or is an eh landing pad. - bool isAccessable() const { return !pred_empty() || isLandingPad(); } - // Code Layout methods. /// moveBefore/moveAfter - move 'this' block before or after the specified |