Fix unused variable warnings. NFCI.

llvm-svn: 333195
This commit is contained in:
Simon Pilgrim 2018-05-24 15:34:50 +00:00
parent 274d72faad
commit 8bd73573c3
1 changed files with 0 additions and 3 deletions

View File

@ -34286,10 +34286,7 @@ static SDValue combineLogicBlendIntoPBLENDV(SDNode *N, SelectionDAG &DAG,
const X86Subtarget &Subtarget) {
assert(N->getOpcode() == ISD::OR && "Unexpected Opcode");
SDValue N0 = N->getOperand(0);
SDValue N1 = N->getOperand(1);
EVT VT = N->getValueType(0);
if (!((VT.is128BitVector() && Subtarget.hasSSE2()) ||
(VT.is256BitVector() && Subtarget.hasInt256())))
return SDValue();