If we're trying to be arbitrary precision, unsigned char clearly won't cut it. Needed for dec->bin conversions.

llvm-svn: 42910
This commit is contained in:
Neil Booth 2007-10-12 15:33:27 +00:00
parent 39cc673e61
commit 9b83d8be07

View 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;