[llvm] r295065 - Remove unused variable.

Diego Novillo via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 14 08:39:54 PST 2017


Author: dnovillo
Date: Tue Feb 14 10:39:54 2017
New Revision: 295065

URL: http://llvm.org/viewvc/llvm-project?rev=295065&view=rev
Log:
Remove unused variable.

Modified:
    llvm/trunk/lib/Target/X86/X86ISelLowering.cpp

Modified: llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86ISelLowering.cpp?rev=295065&r1=295064&r2=295065&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86ISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86ISelLowering.cpp Tue Feb 14 10:39:54 2017
@@ -8227,7 +8227,6 @@ static bool matchVectorShuffleWithUNPCK(
                                         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) {




More information about the llvm-commits mailing list