mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 18:31:04 +00:00
Clarify the definition of "latch block" in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64916 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
38deef9ce5
commit
b317143ba8
@ -307,10 +307,10 @@ public:
|
||||
return Out;
|
||||
}
|
||||
|
||||
/// getLoopLatch - If there is a latch block for this loop, return it. A
|
||||
/// latch block is the canonical backedge for a loop. A loop header in normal
|
||||
/// form has two edges into it: one from a preheader and one from a latch
|
||||
/// block.
|
||||
/// getLoopLatch - If there is a single latch block for this loop, return it.
|
||||
/// A latch block is a block that contains a branch back to the header.
|
||||
/// A loop header in normal form has two edges into it: one from a preheader
|
||||
/// and one from a latch block.
|
||||
BlockT *getLoopLatch() const {
|
||||
BlockT *Header = getHeader();
|
||||
typedef GraphTraits<Inverse<BlockT*> > InvBlockTraits;
|
||||
|
Loading…
Reference in New Issue
Block a user