1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 21:42:54 +02:00

Remove unused variable.

llvm-svn: 295065
This commit is contained in:
Diego Novillo 2017-02-14 16:39:54 +00:00
parent 39fd775332
commit 9a15512934

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) {