From ff1eca851aa70726204333ddf2ac247f5e51a1ce Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 12 Apr 2005 18:51:53 +0000 Subject: [PATCH] add an argument. llvm-svn: 21254 --- include/llvm/BasicBlock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/BasicBlock.h b/include/llvm/BasicBlock.h index 38ac1093659..23744d68243 100644 --- a/include/llvm/BasicBlock.h +++ b/include/llvm/BasicBlock.h @@ -155,7 +155,7 @@ public: /// 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