Fix a typo in a comment.
authorDan Gohman <gohman@apple.com>
Mon, 26 Oct 2009 15:55:24 +0000 (15:55 +0000)
committerDan Gohman <gohman@apple.com>
Mon, 26 Oct 2009 15:55:24 +0000 (15:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85120 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/LoopRotation.cpp

index 6e0f67b67296fb2124f4762d75546f9788093949..2f726587a58210acd5be0849ac10050f70f03233 100644 (file)
@@ -211,7 +211,7 @@ bool LoopRotate::rotateLoop(Loop *Lp, LPPassManager &LPM) {
   for (I = OrigHeader->begin(); PHINode *PN = dyn_cast<PHINode>(I); ++I)
     PN->removeIncomingValue(PN->getBasicBlockIndex(OrigPreHeader));
 
-  // Now fix up users of the instructions in OrigHeader, insertting PHI nodes
+  // Now fix up users of the instructions in OrigHeader, inserting PHI nodes
   // as necessary.
   SSAUpdater SSA;
   for (I = OrigHeader->begin(); I != E; ++I) {