mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
Fix a "typo" from my previous commit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218281 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1488ba63fe
commit
cdc451b1ae
@ -9491,7 +9491,7 @@ static SDValue lowerV32I8VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
|
||||
assert(V2.getSimpleValueType() == MVT::v32i8 && "Bad operand type!");
|
||||
ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
|
||||
ArrayRef<int> Mask = SVOp->getMask();
|
||||
assert(.size() == 32 && "Unexpected mask size for v32 shuffle!");
|
||||
assert(Mask.size() == 32 && "Unexpected mask size for v32 shuffle!");
|
||||
assert(Subtarget->hasAVX2() && "We can only lower v32i8 with AVX2!");
|
||||
|
||||
// FIXME: Actually implement this using AVX2!!!
|
||||
|
Loading…
Reference in New Issue
Block a user