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 | 6a10d5ebd332706f3c95e54beceedbf00b7a81ea (patch) | |
tree | 2376e028fb4d43bebe7a255e81cb847195b15508 | |
parent | 683eed3286ea1837f8ad8adf1229bf6294604632 (diff) | |
download | bcm5719-llvm-6a10d5ebd332706f3c95e54beceedbf00b7a81ea.tar.gz bcm5719-llvm-6a10d5ebd332706f3c95e54beceedbf00b7a81ea.zip |
Fix a typo in a comment.
llvm-svn: 85120
-rw-r--r-- | llvm/lib/Transforms/Scalar/LoopRotation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/LoopRotation.cpp b/llvm/lib/Transforms/Scalar/LoopRotation.cpp index 6e0f67b6729..2f726587a58 100644 --- a/llvm/lib/Transforms/Scalar/LoopRotation.cpp +++ b/llvm/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) { |