Fix this comment. The loop header is the loop entry point.

llvm-svn: 83437
This commit is contained in:
Dan Gohman 2009-10-07 00:33:10 +00:00
parent 548886518d
commit f8e4410994
1 changed files with 2 additions and 2 deletions

View File

@ -95,11 +95,11 @@ FunctionPass *llvm::createCodePlacementOptPass() {
/// ...
/// jmp B
///
/// C: --> new loop header
/// C:
/// ...
/// <fallthough to B>
///
/// B:
/// B: --> loop header
/// ...
/// jcc <cond> C, [exit]
///