Improve doxygen, from part of Evan's patch that didn't apply.
authorChris Lattner <sabre@nondot.org>
Thu, 21 Apr 2005 16:06:03 +0000 (16:06 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 21 Apr 2005 16:06:03 +0000 (16:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21394 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/BasicBlock.cpp

index 65ba49a837f2ad4c54b079abf012b955ab8973a6..1d70b00d24c7ccb01618cc405ac49f3bb7994aac 100644 (file)
@@ -128,12 +128,12 @@ BasicBlock *BasicBlock::getSinglePredecessor() {
   return (PI == E) ? ThePred : 0 /*multiple preds*/;
 }
 
-// removePredecessor - This method is used to notify a BasicBlock that the
-// specified Predecessor of the block is no longer able to reach it.  This is
-// actually not used to update the Predecessor list, but is actually used to 
-// update the PHI nodes that reside in the block.  Note that this should be
-// called while the predecessor still refers to this block.
-//
+/// removePredecessor - This method is used to notify a BasicBlock that the
+/// specified Predecessor of the block is no longer able to reach it.  This is
+/// actually not used to update the Predecessor list, but is actually used to 
+/// update the PHI nodes that reside in the block.  Note that this should be
+/// called while the predecessor still refers to this block.
+///
 void BasicBlock::removePredecessor(BasicBlock *Pred,
                                    bool DontDeleteUselessPHIs) {
   assert((hasNUsesOrMore(16)||// Reduce cost of this assertion for complex CFGs.