From ad529c0e6ac7fc4a32c7cb1d1ea2ab58e18a8807 Mon Sep 17 00:00:00 2001 From: Alexey Bataev Date: Thu, 8 Jun 2017 16:41:35 +0000 Subject: [PATCH] [SLP] More comments fix, NFC. 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/llvm/CodeGen/BasicTTIImpl.h b/include/llvm/CodeGen/BasicTTIImpl.h index 02477985e29..9e33df6b55e 100644 --- a/include/llvm/CodeGen/BasicTTIImpl.h +++ b/include/llvm/CodeGen/BasicTTIImpl.h @@ -1092,10 +1092,10 @@ public: /// \----------------v-------------/ \----------v------------/ /// n/2 elements n/2 elements /// %red1 = op %val, 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 %red1, %undef, /// /// \----------------v-------------/ \----------v------------/