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 | |
| parent | 548886518d08649d72542babbe74f73b42d2d232 (diff) | |
| download | bcm5719-llvm-f8e4410994dda63305232c652e06546914e475da.tar.gz bcm5719-llvm-f8e4410994dda63305232c652e06546914e475da.zip | |
Fix this comment. The loop header is the loop entry point.
llvm-svn: 83437
Diffstat (limited to 'llvm/lib')
| -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 383098e11ef..932fae4f316 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]  /// | 

