Fix some obvious Doxygen comment bugs.
authorOwen Anderson <resistor@mac.com>
Tue, 6 May 2014 05:05:59 +0000 (05:05 +0000)
committerOwen Anderson <resistor@mac.com>
Tue, 6 May 2014 05:05:59 +0000 (05:05 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208059 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/IR/BasicBlock.h

index 82f751824067afe5e2c3459c1b8a6c8cd15382d2..a19489aa49b1df410570af8511dc1988ad48d47e 100644 (file)
@@ -174,14 +174,15 @@ public:
   void moveAfter(BasicBlock *MovePos);
 
 
-  /// \brief Return this block if it has a single predecessor block. Otherwise
-  /// return a null pointer.
+  /// \brief Return the predecessor of this block if it has a single predecessor
+  /// block. Otherwise return a null pointer.
   BasicBlock *getSinglePredecessor();
   const BasicBlock *getSinglePredecessor() const {
     return const_cast<BasicBlock*>(this)->getSinglePredecessor();
   }
 
-  /// \brief Return this block if it has a unique predecessor block. Otherwise return a null pointer.
+  /// \brief Return the predecessor of this block if it has a unique predecessor
+  /// block. Otherwise return a null pointer.
   ///
   /// Note that unique predecessor doesn't mean single edge, there can be
   /// multiple edges from the unique predecessor to this block (for example a