U is good enough

llvm-svn: 140166
diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp
index 931c885..6eadaaf 100644
--- a/llvm/lib/Support/APInt.cpp
+++ b/llvm/lib/Support/APInt.cpp
@@ -54,11 +54,11 @@
       return r;
 
     r = cdigit - 'A';
-    if (r <= unsigned(radix - 11U))
+    if (r <= radix - 11U)
       return r + 10;
 
     r = cdigit - 'a';
-    if (r <= unsigned(radix - 11U))
+    if (r <= radix - 11U)
       return r + 10;
     
     radix = 10;