From: Sanjoy Das Date: Fri, 27 Mar 2015 06:01:56 +0000 (+0000) Subject: [NFC] Fix typo in comment. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cd4547deb8612899514928bb6100cf5b187cf1ec;p=oota-llvm.git [NFC] Fix typo in comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233363 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/lib/Transforms/Scalar/LoopStrengthReduce.cpp index 8445d5f50c4..31878d3a85b 100644 --- a/lib/Transforms/Scalar/LoopStrengthReduce.cpp +++ b/lib/Transforms/Scalar/LoopStrengthReduce.cpp @@ -28,7 +28,7 @@ // // The SCEV for %i is {0,+,1}<%L>. The SCEV for %i.next is {1,+,1}<%L>, however // it's useful to think about these as the same register, with some uses using -// the value of the register before the add and some using // it after. In this +// the value of the register before the add and some using it after. In this // example, the icmp is a post-increment user, since it uses %i.next, which is // the value of the induction variable after the increment. The other common // case of post-increment users is users outside the loop.