diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2013-04-18 20:13:04 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2013-04-18 20:13:04 +0000 |
commit | 4b15d6ae49b407cfcf526a3f7bec7ab15fa803c0 (patch) | |
tree | 69a567c2be8b74742d4db3ff8473cd8c3c12bf87 | |
parent | 86dc3f3739eedc26f2fd1f6ade1633c1fa84bd7d (diff) |
Fix a -Wdocumentation warning
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179789 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Vectorize/LoopVectorize.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Vectorize/LoopVectorize.cpp b/lib/Transforms/Vectorize/LoopVectorize.cpp index 7a3d678b6b..6ca7622963 100644 --- a/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -343,7 +343,7 @@ public: RK_IntegerOr, ///< Bitwise or logical OR of numbers. RK_IntegerAnd, ///< Bitwise or logical AND of numbers. RK_IntegerXor, ///< Bitwise or logical XOR of numbers. - RK_IntegerMinMax, //< Min/max implemented in terms of select(cmp()). + RK_IntegerMinMax, ///< Min/max implemented in terms of select(cmp()). RK_FloatAdd, ///< Sum of floats. RK_FloatMult ///< Product of floats. }; |