Fix a comment.
authorBob Wilson <bob.wilson@apple.com>
Mon, 16 Nov 2009 19:33:27 +0000 (19:33 +0000)
committerBob Wilson <bob.wilson@apple.com>
Mon, 16 Nov 2009 19:33:27 +0000 (19:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@88940 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/BranchFolding.cpp

index 1defbf6cd2d39d4b8fe3ddd49346bdbc5f99c3af..63c0340dfdcc7a6d851dd700ffad5bfb68ffdedd 100644 (file)
@@ -1185,7 +1185,7 @@ ReoptimizeBlock:
     // If the previous block unconditionally falls through to this block and
     // this block has no other predecessors, move the contents of this block
     // into the prior block. This doesn't usually happen when SimplifyCFG
-    // has been used, but it can happen tail duplication eliminates all the
+    // has been used, but it can happen if tail duplication eliminates all the
     // non-branch predecessors of a block leaving only the fall-through edge.
     // This has to check PrevBB->succ_size() because EH edges are ignored by
     // AnalyzeBranch.