mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
Silence unused variable warnings in the new stub functions that occur
when assertions are disabled. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218280 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
90969b9ee0
commit
1488ba63fe
@ -9475,6 +9475,7 @@ static SDValue lowerV16I16VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
|
||||
assert(Subtarget->hasAVX2() && "We can only lower v16i16 with AVX2!");
|
||||
|
||||
// FIXME: Actually implement this using AVX2!!!
|
||||
(void)Mask;
|
||||
return splitAndLower256BitVectorShuffle(Op, V1, V2, Subtarget, DAG);
|
||||
}
|
||||
|
||||
@ -9490,10 +9491,11 @@ 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(Mask.size() == 32 && "Unexpected mask size for v32 shuffle!");
|
||||
assert(.size() == 32 && "Unexpected mask size for v32 shuffle!");
|
||||
assert(Subtarget->hasAVX2() && "We can only lower v32i8 with AVX2!");
|
||||
|
||||
// FIXME: Actually implement this using AVX2!!!
|
||||
(void)Mask;
|
||||
return splitAndLower256BitVectorShuffle(Op, V1, V2, Subtarget, DAG);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user