[llvm] r233363 - [NFC] Fix typo in comment.

Sanjoy Das sanjoy at playingwithpointers.com
Thu Mar 26 23:01:57 PDT 2015


Author: sanjoy
Date: Fri Mar 27 01:01:56 2015
New Revision: 233363

URL: http://llvm.org/viewvc/llvm-project?rev=233363&view=rev
Log:
[NFC] Fix typo in comment.

Modified:
    llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp?rev=233363&r1=233362&r2=233363&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp Fri Mar 27 01:01:56 2015
@@ -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.





More information about the llvm-commits mailing list