diff options
author | Chris Lattner <sabre@nondot.org> | 2011-01-03 01:10:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-01-03 01:10:08 +0000 |
commit | 02a9776b64bbd79ac8fceae91a3a4641ca574246 (patch) | |
tree | 9812091c4e6db2ffa9a9abeb728e1d826212bdd1 /llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp | |
parent | cab9a0ababb84b3a0292ffe86f2ca0ae1578b8f3 (diff) | |
download | bcm5719-llvm-02a9776b64bbd79ac8fceae91a3a4641ca574246.tar.gz bcm5719-llvm-02a9776b64bbd79ac8fceae91a3a4641ca574246.zip |
reduce redundancy in the hashing code and other misc cleanups.
llvm-svn: 122720
Diffstat (limited to 'llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp b/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp index 086afb14b29..dc55848d35f 100644 --- a/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp +++ b/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp @@ -32,7 +32,7 @@ // for (i) { __real__(*P) = 0; __imag__(*P) = 0; } // this is also "Example 2" from http://blog.regehr.org/archives/320 // -// This could regognize common matrix multiplies and dot product idioms and +// This could recognize common matrix multiplies and dot product idioms and // replace them with calls to BLAS (if linked in??). // //===----------------------------------------------------------------------===// |