forked from OSchip/llvm-project
Add a missing doxygen comment for a helper method.
llvm-svn: 144497
This commit is contained in:
parent
b336172f90
commit
eb4ec3aea5
|
@ -275,6 +275,12 @@ static std::string getBlockNum(MachineBasicBlock *BB) {
|
||||||
}
|
}
|
||||||
#endif
|
#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(
|
void MachineBlockPlacement::markChainSuccessors(
|
||||||
BlockChain &Chain,
|
BlockChain &Chain,
|
||||||
MachineBasicBlock *LoopHeaderBB,
|
MachineBasicBlock *LoopHeaderBB,
|
||||||
|
|
Loading…
Reference in New Issue