commit | 386f3e9d50507ecbfb01436dee85cb41ac2df530 | [log] [tgz] |
---|---|---|
author | Dale Johannesen <dalej@apple.com> | Wed May 14 22:53:25 2008 +0000 |
committer | Dale Johannesen <dalej@apple.com> | Wed May 14 22:53:25 2008 +0000 |
tree | c9ad029d180159e0b079303ffb21d2dc913a6ef5 | |
parent | a6c3112b1f486922dcff71794cb9d96f17750648 [diff] [blame] |
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
diff --git a/lib/Support/APFloat.cpp b/lib/Support/APFloat.cpp index de33382..0ee3d54 100644 --- a/lib/Support/APFloat.cpp +++ b/lib/Support/APFloat.cpp
@@ -2003,7 +2003,7 @@ firstSignificantDigit = p; for(;;) { - uint64_t hex_value; + integerPart hex_value; if(*p == '.') { assert(dot == 0);