diff options
Diffstat (limited to 'lib/Transforms')
-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); |