Fix comment typo.
authorDale Johannesen <dalej@apple.com>
Thu, 19 Mar 2009 17:23:29 +0000 (17:23 +0000)
committerDale Johannesen <dalej@apple.com>
Thu, 19 Mar 2009 17:23:29 +0000 (17:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67307 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/SimplifyCFG.cpp

index 925e3e9e1f8aa5e7814f28adc442468e397c0f6a..1cbf91fd7a44025fe3caebd6f4833b131a882ee3 100644 (file)
@@ -85,7 +85,7 @@ static bool CanPropagatePredecessorsForPHIs(BasicBlock *BB, BasicBlock *Succ) {
 
   DOUT << "Looking to fold " << BB->getNameStart() << " into " 
        << Succ->getNameStart() << "\n";
-  // Shortcut, if there is only a single predecessor is must be BB and merging
+  // Shortcut, if there is only a single predecessor it must be BB and merging
   // is always safe
   if (Succ->getSinglePredecessor()) return true;