[llvm] r304985 - [SLP] More comments fix, NFC.
Alexey Bataev via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 8 09:41:36 PDT 2017
Author: abataev
Date: Thu Jun 8 11:41:35 2017
New Revision: 304985
URL: http://llvm.org/viewvc/llvm-project?rev=304985&view=rev
Log:
[SLP] More comments fix, NFC.
Fixed spelling errors on function description.
Modified:
llvm/trunk/include/llvm/CodeGen/BasicTTIImpl.h
Modified: llvm/trunk/include/llvm/CodeGen/BasicTTIImpl.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/BasicTTIImpl.h?rev=304985&r1=304984&r2=304985&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/BasicTTIImpl.h (original)
+++ llvm/trunk/include/llvm/CodeGen/BasicTTIImpl.h Thu Jun 8 11:41:35 2017
@@ -1092,10 +1092,10 @@ public:
/// \----------------v-------------/ \----------v------------/
/// n/2 elements n/2 elements
/// %red1 = op <n x t> %val, <n x t> val1
- /// After this operation we have a vector %red1 with only maningfull the
- /// first n/2 elements, the second n/2 elements are undefined and can be
+ /// After this operation we have a vector %red1 where only the first n/2
+ /// elements are meaningful, the second n/2 elements are undefined and can be
/// dropped. All other operations are actually working with the vector of
- /// length n/2, not n. though the real vector length is still n.
+ /// length n/2, not n, though the real vector length is still n.
/// %val2 = shufflevector<n x t> %red1, <n x t> %undef,
/// <n x i32> <i32 n/4, i32 n/4 + 1, ..., i32 n/2, i32 undef, ..., i32 undef>
/// \----------------v-------------/ \----------v------------/
More information about the llvm-commits
mailing list