From: Reid Spencer Date: Wed, 7 Jun 2006 21:24:10 +0000 (+0000) Subject: Fix a spello in a comment. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=6296b3cac5448afe910e9dd7953fb10082721c77;p=oota-llvm.git Fix a spello in a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28714 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/LoopUnroll.cpp b/lib/Transforms/Scalar/LoopUnroll.cpp index a9dba4bb5ef..4f2a0e0b62e 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::iterator UI = Users.begin(), E = Users.end(); UI != E; ++UI) { Instruction *I = cast(*UI);