diff options
author | Chris Lattner <sabre@nondot.org> | 2005-04-12 18:51:53 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-04-12 18:51:53 +0000 |
commit | eb958b0e45ad93dd2b087f87c174af99ca45f778 (patch) | |
tree | 0bac556effa44020383c97f6d8e78494c27e84fa /llvm | |
parent | 95f16a3ac439ccc079f32dc830d0754f11492189 (diff) | |
download | bcm5719-llvm-eb958b0e45ad93dd2b087f87c174af99ca45f778.tar.gz bcm5719-llvm-eb958b0e45ad93dd2b087f87c174af99ca45f778.zip |
add an argument.
llvm-svn: 21254
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/BasicBlock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/BasicBlock.h b/llvm/include/llvm/BasicBlock.h index 38ac1093659..23744d68243 100644 --- a/llvm/include/llvm/BasicBlock.h +++ b/llvm/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 |