Changes in directory llvm/include/llvm/CodeGen:

MachineBasicBlock.h updated: 1.59 -> 1.60
---
Log message:

Remove isAccessable.

---
Diffs of the changes:  (+0 -4)

 MachineBasicBlock.h |    4 ----
 1 files changed, 4 deletions(-)


Index: llvm/include/llvm/CodeGen/MachineBasicBlock.h
diff -u llvm/include/llvm/CodeGen/MachineBasicBlock.h:1.59 
llvm/include/llvm/CodeGen/MachineBasicBlock.h:1.60
--- llvm/include/llvm/CodeGen/MachineBasicBlock.h:1.59  Wed Feb 21 16:39:52 2007
+++ llvm/include/llvm/CodeGen/MachineBasicBlock.h       Thu Feb 22 10:39:03 2007
@@ -165,10 +165,6 @@
   /// 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



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to