[mips][msa] Fix buildbot failures caused by an unused variable when assertions are disabled.

llvm-svn: 194472
This commit is contained in:
Daniel Sanders 2013-11-12 11:14:18 +00:00
parent 3f6eb546d3
commit e2d3636a1d
1 changed files with 1 additions and 2 deletions

View File

@ -1346,14 +1346,13 @@ static SDValue lowerMSABitClear(SDValue Op, SelectionDAG &DAG) {
static SDValue lowerMSABitClearImm(SDValue Op, SelectionDAG &DAG) {
SDLoc DL(Op);
EVT ResTy = Op->getValueType(0);
unsigned ResTyNumElements = ResTy.getVectorNumElements();
SDValue SHAmount = Op->getOperand(2);
EVT ImmTy = SHAmount->getValueType(0);
SDValue Bit =
DAG.getNode(ISD::SHL, DL, ImmTy, DAG.getConstant(1, ImmTy), SHAmount);
SDValue BitMask = DAG.getNOT(DL, Bit, ImmTy);
assert(ResTyNumElements <= 16);
assert(ResTy.getVectorNumElements() <= 16);
BitMask = lowerMSASplatImm(DL, ResTy, BitMask, DAG);