From 21531142276ac85ea431f18a462195ac6099b5f5 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Tue, 14 Nov 2017 16:14:00 +0000 Subject: [PATCH] [X86] Fix typo in comment. NFC llvm-svn: 318156 --- llvm/lib/Target/X86/X86InterleavedAccess.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/lib/Target/X86/X86InterleavedAccess.cpp b/llvm/lib/Target/X86/X86InterleavedAccess.cpp index 6e87116..cdb24b9 100644 --- a/llvm/lib/Target/X86/X86InterleavedAccess.cpp +++ b/llvm/lib/Target/X86/X86InterleavedAccess.cpp @@ -137,7 +137,7 @@ bool X86InterleavedAccessGroup::isSupported() const { // 1. Store and load of 4-element vectors of 64 bits on AVX. // 2. Store of 16/32-element vectors of 8 bits on AVX. // Stride 3: - // 1. Load of 16/32-element vecotrs of 8 bits on AVX. + // 1. Load of 16/32-element vectors of 8 bits on AVX. if (!Subtarget.hasAVX() || (Factor != 4 && Factor != 3)) return false; @@ -260,7 +260,7 @@ static void genShuffleBland(MVT VT, ArrayRef Mask, Out.push_back(Mask[i] + HighOffset + NumOfElm); } -// reorderSubVecotr returns the data to is the original state. And de-facto is +// reorderSubVector returns the data to is the original state. And de-facto is // the opposite of the function concatSubVector. // For VecElems = 16 -- 2.7.4