diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-06-07 21:24:10 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-06-07 21:24:10 +0000 |
commit | 6296b3cac5448afe910e9dd7953fb10082721c77 (patch) | |
tree | e0088114c305596571852d18fe6db3585bd463f6 /lib/Transforms/Scalar/LoopUnroll.cpp | |
parent | 170da9b058141fc7c3052d352ec013aff3b54486 (diff) |
Fix a spello in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28714 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/LoopUnroll.cpp')
-rw-r--r-- | lib/Transforms/Scalar/LoopUnroll.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/LoopUnroll.cpp b/lib/Transforms/Scalar/LoopUnroll.cpp index a9dba4bb5e..4f2a0e0b62 100644 --- a/lib/Transforms/Scalar/LoopUnroll.cpp +++ b/lib/Transforms/Scalar/LoopUnroll.cpp @@ -213,7 +213,7 @@ bool LoopUnroll::visitLoop(Loop *L) { // We don't want to reprocess entries with PHI nodes in them. For this // reason, we look at each operand of each user exactly once, performing the - // stubstitution exactly once. + // substitution exactly once. for (std::set<User*>::iterator UI = Users.begin(), E = Users.end(); UI != E; ++UI) { Instruction *I = cast<Instruction>(*UI); |