Remove unused variable. NFCI.

llvm-svn: 355289
This commit is contained in:
Simon Pilgrim 2019-03-03 14:23:07 +00:00
parent d8e91a54c0
commit e48be5d698
1 changed files with 0 additions and 1 deletions

View File

@ -6902,7 +6902,6 @@ static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
if (Opcode == ISD::EXTRACT_SUBVECTOR &&
isa<ConstantSDNode>(N->getOperand(1))) {
SDValue Src = N->getOperand(0);
EVT SrcVT = Src.getValueType();
uint64_t SrcIdx = N->getConstantOperandVal(1);
return getShuffleScalarElt(Src.getNode(), Index + SrcIdx, DAG, Depth + 1);
}