[Target][ARM] Add a usage for SrcSz to unbreak build-bots without assertions

llvm-svn: 355101
This commit is contained in:
Kadir Cetinkaya 2019-02-28 15:55:11 +00:00
parent ed571d77d2
commit 1b1b1a6135
1 changed files with 1 additions and 0 deletions

View File

@ -13701,6 +13701,7 @@ void ARMTargetLowering::computeKnownBitsForTargetNode(const SDValue Op,
EVT VT = Op.getValueType();
const unsigned DstSz = VT.getScalarSizeInBits();
const unsigned SrcSz = VecVT.getVectorElementType().getSizeInBits();
(void)SrcSz;
assert(SrcSz == Known.getBitWidth());
assert(DstSz > SrcSz);
if (Op.getOpcode() == ARMISD::VGETLANEs)