mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-19 02:42:58 +00:00
Don't assume underlying APInt type is limited
to 64 bits. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51135 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a6c3112b1f
commit
386f3e9d50
@ -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…
x
Reference in New Issue
Block a user