If we're trying to be arbitrary precision, unsigned char clearly won't cut it. Neede...
authorNeil Booth <neil@daikokuya.co.uk>
Fri, 12 Oct 2007 15:33:27 +0000 (15:33 +0000)
committerNeil Booth <neil@daikokuya.co.uk>
Fri, 12 Oct 2007 15:33:27 +0000 (15:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42910 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/APFloat.cpp

index ab30a030a2bcdd8d2af542184737f4803954b212..f2f69537511f1e8763793f02221942a0b8e1aa43 100644 (file)
@@ -39,7 +39,7 @@ namespace llvm {
 
     /* Number of bits in the significand.  This includes the integer
        bit.  */
-    unsigned char precision;
+    unsigned int precision;
 
     /* If the target format has an implicit integer bit.  */
     bool implicitIntegerBit;