Fix this comment. The loop header is the loop entry point.
authorDan Gohman <gohman@apple.com>
Wed, 7 Oct 2009 00:33:10 +0000 (00:33 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 7 Oct 2009 00:33:10 +0000 (00:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83437 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CodePlacementOpt.cpp

index 383098e11efdc3d0b470b11803357c5abb208429..932fae4f316cfab38a4c3818c2d168365505badf 100644 (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]
 ///