mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-17 08:36:52 +00:00
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:
parent
39cc673e61
commit
9b83d8be07
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user