ARM64: shut up warning about variable only used in assert.

llvm-svn: 207106
This commit is contained in:
Tim Northover 2014-04-24 12:22:12 +00:00
parent 79ec019261
commit 49153037d4
1 changed files with 1 additions and 0 deletions

View File

@ -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;