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 | bd31b173d276cb488b5fa72de8d42ae192cbfc97 (patch) | |
tree | b84200e44620b3ef0a70a024e3b8ebce98328edf /lib/CodeGen/CodePlacementOpt.cpp | |
parent | 249fb339ad9d4b921a04de738b9c67d27e328bb7 (diff) |
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
Diffstat (limited to 'lib/CodeGen/CodePlacementOpt.cpp')
-rw-r--r-- | lib/CodeGen/CodePlacementOpt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CodePlacementOpt.cpp b/lib/CodeGen/CodePlacementOpt.cpp index 383098e11e..932fae4f31 100644 --- a/lib/CodeGen/CodePlacementOpt.cpp +++ b/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] /// |