]> granicus.if.org Git - llvm/commitdiff
[SLP] More comments fix, NFC.
authorAlexey Bataev <a.bataev@hotmail.com>
Thu, 8 Jun 2017 16:41:35 +0000 (16:41 +0000)
committerAlexey Bataev <a.bataev@hotmail.com>
Thu, 8 Jun 2017 16:41:35 +0000 (16:41 +0000)
Fixed spelling errors on function description.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@304985 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/BasicTTIImpl.h

index 02477985e291195cacc41baa4e4d861d2b7957a2..9e33df6b55ec179ba56c30f34be6d3ed108d625c 100644 (file)
@@ -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------------/