1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

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 aba66ae89b
commit 564b5f75ac

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