1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

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 535c0683ea
commit e85aeac703

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,