forked from OSchip/llvm-project
[Target][ARM] Add a usage for SrcSz to unbreak build-bots without assertions
llvm-svn: 355101
This commit is contained in:
parent
ed571d77d2
commit
1b1b1a6135
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue