mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-05-16 03:56:02 +00: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;
|
firstSignificantDigit = p;
|
||||||
|
|
||||||
for(;;) {
|
for(;;) {
|
||||||
uint64_t hex_value;
|
integerPart hex_value;
|
||||||
|
|
||||||
if(*p == '.') {
|
if(*p == '.') {
|
||||||
assert(dot == 0);
|
assert(dot == 0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user