OSDN Git Service

Silence a GCC warning about comparing signed and unsigned types.
authorDuncan Sands <baldrick@free.fr>
Mon, 29 Oct 2012 11:29:53 +0000 (11:29 +0000)
committerDuncan Sands <baldrick@free.fr>
Mon, 29 Oct 2012 11:29:53 +0000 (11:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166922 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ISelLowering.cpp

index 1ab1bcb..06b8329 100644 (file)
@@ -6598,8 +6598,8 @@ X86TargetLowering::lowerVectorIntExtend(SDValue Op, SelectionDAG &DAG) const {
 
   // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
   unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
-  while ((1 << Shift) < NumElems) {
-    if (SVOp->getMaskElt(1 << Shift) == 1)
+  while ((1U << Shift) < NumElems) {
+    if (SVOp->getMaskElt(1U << Shift) == 1)
       break;
     Shift += 1;
     // The maximal ratio is 8, i.e. from i8 to i64.