From: Diego Novillo Date: Tue, 14 Feb 2017 16:39:54 +0000 (+0000) Subject: Remove unused variable. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=270ca404ab1e283c8eb2ab695a9b0abf9ff5d90f;p=llvm Remove unused variable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@295065 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index 2288ce8941f..37574a9dd0b 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -8227,7 +8227,6 @@ static bool matchVectorShuffleWithUNPCK(MVT VT, SDValue &V1, SDValue &V2, ArrayRef 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) {