mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-31 10:34:17 +00:00
Fix some obvious Doxygen comment bugs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208059 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3e889f7041
commit
b184a37074
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user