Remove unused variable.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@295065 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Diego Novillo 2017-02-14 16:39:54 +00:00
parent de348d3f7d
commit 270ca404ab

View File

@ -8227,7 +8227,6 @@ static bool matchVectorShuffleWithUNPCK(MVT VT, SDValue &V1, SDValue &V2,
ArrayRef<int> TargetMask,
SelectionDAG &DAG) {
int NumElts = VT.getVectorNumElements();
int NumEltsInLane = 128 / VT.getScalarSizeInBits();
bool Undef1 = true, Undef2 = true;
for (int i = 0; (i != NumElts) && (Undef1 || Undef2); i += 2) {