1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Don't assume underlying APInt type is limited

to 64 bits.

llvm-svn: 51135
This commit is contained in:
Dale Johannesen 2008-05-14 22:53:25 +00:00
parent c1d9f9604b
commit 809ad5df81

View File

@ -2003,7 +2003,7 @@ APFloat::convertFromHexadecimalString(const char *p,
firstSignificantDigit = p;
for(;;) {
uint64_t hex_value;
integerPart hex_value;
if(*p == '.') {
assert(dot == 0);