[llvm-commits] [llvm] r67307 - /llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp

Dale Johannesen dalej at apple.com
Thu Mar 19 10:23:30 PDT 2009


Author: johannes
Date: Thu Mar 19 12:23:29 2009
New Revision: 67307

URL: http://llvm.org/viewvc/llvm-project?rev=67307&view=rev
Log:
Fix comment typo.


Modified:
    llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp

Modified: llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp?rev=67307&r1=67306&r2=67307&view=diff

==============================================================================
--- llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp (original)
+++ llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp Thu Mar 19 12:23:29 2009
@@ -85,7 +85,7 @@
 
   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;
 





More information about the llvm-commits mailing list