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 | d29ea044460367b85b57ce6fe63add75da1fba2d (patch) | |
tree | 2098163ac6bbf814a0c6489284533f39cfadb131 | |
parent | 8971be89bb033d0c31a2af01708274a27028df2e (diff) | |
download | bcm5719-llvm-d29ea044460367b85b57ce6fe63add75da1fba2d.tar.gz bcm5719-llvm-d29ea044460367b85b57ce6fe63add75da1fba2d.zip |
Fix a -Wdocumentation warning
llvm-svn: 179789
-rw-r--r-- | llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp index 7a3d678b6bc..6ca76229632 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/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. }; |