mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 22:24:07 +00:00
Remove isAccessable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34497 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user