Add a missing doxygen comment for a helper method.

llvm-svn: 144497
This commit is contained in:
Chandler Carruth 2011-11-13 11:34:55 +00:00
parent b336172f90
commit eb4ec3aea5
1 changed files with 6 additions and 0 deletions

View File

@ -275,6 +275,12 @@ static std::string getBlockNum(MachineBasicBlock *BB) {
}
#endif
/// \brief Mark a chain's successors as having one fewer preds.
///
/// When a chain is being merged into the "placed" chain, this routine will
/// quickly walk the successors of each block in the chain and mark them as
/// having one fewer active predecessor. It also adds any successors of this
/// chain which reach the zero-predecessor state to the worklist passed in.
void MachineBlockPlacement::markChainSuccessors(
BlockChain &Chain,
MachineBasicBlock *LoopHeaderBB,