From: Neil Booth Date: Fri, 12 Oct 2007 15:33:27 +0000 (+0000) Subject: If we're trying to be arbitrary precision, unsigned char clearly won't cut it. Neede... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=7a951ca5480698c97bcf1561d3d564e5bd9199f8;p=oota-llvm.git If we're trying to be arbitrary precision, unsigned char clearly won't cut it. Needed for dec->bin conversions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42910 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/APFloat.cpp b/lib/Support/APFloat.cpp index ab30a030a2b..f2f69537511 100644 --- a/lib/Support/APFloat.cpp +++ b/lib/Support/APFloat.cpp @@ -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;