[llvm-commits] CVS: llvm/include/llvm/BasicBlock.h
Chris Lattner
lattner at cs.uiuc.edu
Tue Apr 12 11:52:08 PDT 2005
Changes in directory llvm/include/llvm:
BasicBlock.h updated: 1.51 -> 1.52
---
Log message:
add an argument.
---
Diffs of the changes: (+1 -1)
BasicBlock.h | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/include/llvm/BasicBlock.h
diff -u llvm/include/llvm/BasicBlock.h:1.51 llvm/include/llvm/BasicBlock.h:1.52
--- llvm/include/llvm/BasicBlock.h:1.51 Mon Mar 14 23:17:48 2005
+++ llvm/include/llvm/BasicBlock.h Tue Apr 12 13:51:53 2005
@@ -155,7 +155,7 @@
/// update the PHI nodes that reside in the block. Note that this should be
/// called while the predecessor still refers to this block.
///
- void removePredecessor(BasicBlock *Pred);
+ void removePredecessor(BasicBlock *Pred, bool DontDeleteUselessPHIs = false);
/// splitBasicBlock - This splits a basic block into two at the specified
/// instruction. Note that all instructions BEFORE the specified iterator
More information about the llvm-commits
mailing list