From e010eb3041c03fb9bbdc16f036ff69a3bbad6dfa Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Mon, 5 Nov 2012 22:01:44 +0000 Subject: Suppress signed/unsigned comparison warning. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167410 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/X86/X86ISelLowering.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/Target') diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index a42b25b65f..afc71db005 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -17555,10 +17555,10 @@ X86VectorTargetTransformInfo::getArithmeticInstrCost(unsigned Opcode, unsigned X86VectorTargetTransformInfo::getVectorInstrCost(unsigned Opcode, Type *Val, - unsigned Index) const { + unsigned Index) const { assert(Val->isVectorTy() && "This must be a vector type"); - if (Index != -1) { + if (Index != -1u) { // Legalize the type. std::pair LT = getTypeLegalizationCost(Val->getContext(), TLI->getValueType(Val)); -- cgit v1.2.3