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:
parent
c1d9f9604b
commit
809ad5df81
@ -2003,7 +2003,7 @@ APFloat::convertFromHexadecimalString(const char *p,
|
||||
firstSignificantDigit = p;
|
||||
|
||||
for(;;) {
|
||||
uint64_t hex_value;
|
||||
integerPart hex_value;
|
||||
|
||||
if(*p == '.') {
|
||||
assert(dot == 0);
|
||||
|
Loading…
Reference in New Issue
Block a user