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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83437 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2009-10-07 00:33:10 +00:00
parent 249fb339ad
commit bd31b173d2

View File

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