diff options
author | Dan Gohman <gohman@apple.com> | 2009-10-26 15:55:24 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-10-26 15:55:24 +0000 |
commit | 440e251c75f98ebfbd994afd1de72a2d06aae51e (patch) | |
tree | 77062c217dbd276055fbea1a361440ebef67b1a0 /lib/Transforms/Scalar/LoopRotation.cpp | |
parent | 48b59ec81701430f8adae21dbab1a625ffddcaec (diff) |
Fix a typo in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85120 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/LoopRotation.cpp')
-rw-r--r-- | lib/Transforms/Scalar/LoopRotation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/LoopRotation.cpp b/lib/Transforms/Scalar/LoopRotation.cpp index 6e0f67b672..2f726587a5 100644 --- a/lib/Transforms/Scalar/LoopRotation.cpp +++ b/lib/Transforms/Scalar/LoopRotation.cpp @@ -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) { |