1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-19 04:31:17 +00:00

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

@ -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]
///