From 92e94a2ee44aefda151125fdb62bf9d5b54edfb2 Mon Sep 17 00:00:00 2001 From: Daniel Sanders Date: Tue, 12 Nov 2013 11:14:18 +0000 Subject: [mips][msa] Fix buildbot failures caused by an unused variable when assertions are disabled. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194472 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/Mips/MipsSEISelLowering.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/Target/Mips/MipsSEISelLowering.cpp b/lib/Target/Mips/MipsSEISelLowering.cpp index 4b2bdcd..9585efb 100644 --- a/lib/Target/Mips/MipsSEISelLowering.cpp +++ b/lib/Target/Mips/MipsSEISelLowering.cpp @@ -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); -- cgit v1.1