forked from OSchip/llvm-project
ARM64: shut up warning about variable only used in assert.
llvm-svn: 207106
This commit is contained in:
parent
79ec019261
commit
49153037d4
|
@ -1625,6 +1625,7 @@ static bool isBitfieldPositioningOp(SelectionDAG *CurDAG, SDValue Op,
|
|||
int &MaskWidth) {
|
||||
EVT VT = Op.getValueType();
|
||||
unsigned BitWidth = VT.getSizeInBits();
|
||||
(void)BitWidth;
|
||||
assert(BitWidth == 32 || BitWidth == 64);
|
||||
|
||||
APInt KnownZero, KnownOne;
|
||||
|
|
Loading…
Reference in New Issue