summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-06-07 21:24:10 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-06-07 21:24:10 +0000
commit6296b3cac5448afe910e9dd7953fb10082721c77 (patch)
treee0088114c305596571852d18fe6db3585bd463f6
parent170da9b058141fc7c3052d352ec013aff3b54486 (diff)
downloadllvm-6296b3cac5448afe910e9dd7953fb10082721c77.tar.gz
llvm-6296b3cac5448afe910e9dd7953fb10082721c77.tar.bz2
llvm-6296b3cac5448afe910e9dd7953fb10082721c77.tar.xz
Fix a spello in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28714 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Transforms/Scalar/LoopUnroll.cpp2
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);