diff options
author | Dan Gohman <gohman@apple.com> | 2009-10-07 00:33:10 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-10-07 00:33:10 +0000 |
commit | f8e4410994dda63305232c652e06546914e475da (patch) | |
tree | 94c567a56a2f31dba2f826b0a975e8a994e3d5dc /llvm/lib/CodeGen/CodePlacementOpt.cpp | |
parent | 548886518d08649d72542babbe74f73b42d2d232 (diff) | |
download | llvm-f8e4410994dda63305232c652e06546914e475da.zip llvm-f8e4410994dda63305232c652e06546914e475da.tar.gz llvm-f8e4410994dda63305232c652e06546914e475da.tar.bz2 |
Fix this comment. The loop header is the loop entry point.
llvm-svn: 83437
Diffstat (limited to 'llvm/lib/CodeGen/CodePlacementOpt.cpp')
-rw-r--r-- | llvm/lib/CodeGen/CodePlacementOpt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/CodePlacementOpt.cpp b/llvm/lib/CodeGen/CodePlacementOpt.cpp index 383098e..932fae4 100644 --- a/llvm/lib/CodeGen/CodePlacementOpt.cpp +++ b/llvm/lib/CodeGen/CodePlacementOpt.cpp @@ -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] /// |