[NFC] Fix typo in comment.
authorSanjoy Das <sanjoy@playingwithpointers.com>
Fri, 27 Mar 2015 06:01:56 +0000 (06:01 +0000)
committerSanjoy Das <sanjoy@playingwithpointers.com>
Fri, 27 Mar 2015 06:01:56 +0000 (06:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233363 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/LoopStrengthReduce.cpp

index 8445d5f50c487ecfaf3743bd551f00cf24d2b6a2..31878d3a85bbdad5cd850a0ec25912e854585c7b 100644 (file)
@@ -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 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.
 // 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.