mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-10 02:25:47 +00:00
Fixed unused variable warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228025 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -7903,9 +7903,9 @@ static SDValue lowerVectorShuffleAsZeroOrAnyExtend(
|
|||||||
SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
|
SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
|
||||||
|
|
||||||
int Bits = VT.getSizeInBits();
|
int Bits = VT.getSizeInBits();
|
||||||
int EltBits = VT.getScalarSizeInBits();
|
|
||||||
int NumElements = VT.getVectorNumElements();
|
int NumElements = VT.getVectorNumElements();
|
||||||
assert(EltBits <= 32 && "Exceeds 32-bit integer zero extension limit");
|
assert(VT.getScalarSizeInBits() <= 32 &&
|
||||||
|
"Exceeds 32-bit integer zero extension limit");
|
||||||
assert(Mask.size() == NumElements && "Unexpected shuffle mask size");
|
assert(Mask.size() == NumElements && "Unexpected shuffle mask size");
|
||||||
|
|
||||||
// Define a helper function to check a particular ext-scale and lower to it if
|
// Define a helper function to check a particular ext-scale and lower to it if
|
||||||
|
Reference in New Issue
Block a user