commit | fa48372a24463e5516bd32ad2a777e317fca81c7 | [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 | 958993b2c42143bbb5ace4298c6e3132ebd33f82 | |
parent | 3716952f10e8c313184e156b0f095ac614fd6dab [diff] [blame] |
Don't assume underlying APInt type is limited to 64 bits. llvm-svn: 51135
diff --git a/llvm/lib/Support/APFloat.cpp b/llvm/lib/Support/APFloat.cpp index de33382..0ee3d54 100644 --- a/llvm/lib/Support/APFloat.cpp +++ b/llvm/lib/Support/APFloat.cpp
@@ -2003,7 +2003,7 @@ firstSignificantDigit = p; for(;;) { - uint64_t hex_value; + integerPart hex_value; if(*p == '.') { assert(dot == 0);