diff options
author | Sanjoy Das <sanjoy@playingwithpointers.com> | 2015-03-27 06:01:56 +0000 |
---|---|---|
committer | Sanjoy Das <sanjoy@playingwithpointers.com> | 2015-03-27 06:01:56 +0000 |
commit | 7041fb1c131f1f4fac595b5c6702d204f5b3bf53 (patch) | |
tree | 0ef74003a2d701c6cfca8193f47848fe8cc03da7 /llvm/lib/Transforms | |
parent | a6ebf075b1edbf7fe623c4b0766d97ce2754b29f (diff) | |
download | bcm5719-llvm-7041fb1c131f1f4fac595b5c6702d204f5b3bf53.tar.gz bcm5719-llvm-7041fb1c131f1f4fac595b5c6702d204f5b3bf53.zip |
[NFC] Fix typo in comment.
llvm-svn: 233363
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp index 8445d5f50c4..31878d3a85b 100644 --- a/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp +++ b/llvm/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. |