[llvm] r314510 - Small modification <NFC>

Michael Zuckerman via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 29 05:45:54 PDT 2017


Author: mzuckerm
Date: Fri Sep 29 05:45:54 2017
New Revision: 314510

URL: http://llvm.org/viewvc/llvm-project?rev=314510&view=rev
Log:
Small modification <NFC>

Change-Id: I360abccee12cae29bd2ac4f8399c9ecc92eb7f13

Modified:
    llvm/trunk/lib/Target/X86/X86InterleavedAccess.cpp

Modified: llvm/trunk/lib/Target/X86/X86InterleavedAccess.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86InterleavedAccess.cpp?rev=314510&r1=314509&r2=314510&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86InterleavedAccess.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86InterleavedAccess.cpp Fri Sep 29 05:45:54 2017
@@ -536,7 +536,7 @@ static void group2Shuffle(MVT VT, SmallV
 // By computing the shuffle on a sequence of 16 elements(one lane) and add the
 // correct offset. We are creating a vpsuffed + blend sequence between two
 // shuffles.
-static void genShuffleBland(MVT VT, SmallVectorImpl<uint32_t> &Mask,
+static void genShuffleBland(MVT VT, ArrayRef<uint32_t> Mask,
                             SmallVectorImpl<uint32_t> &Out, int LowOffset,
                             int HighOffset) {
   assert(VT.getSizeInBits() == 256 &&




More information about the llvm-commits mailing list