From 386f3e9d50507ecbfb01436dee85cb41ac2df530 Mon Sep 17 00:00:00 2001 From: Dale Johannesen Date: Wed, 14 May 2008 22:53:25 +0000 Subject: [PATCH] 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 --- lib/Support/APFloat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Support/APFloat.cpp b/lib/Support/APFloat.cpp index de333829dae..0ee3d546b86 100644 --- a/lib/Support/APFloat.cpp +++ b/lib/Support/APFloat.cpp @@ -2003,7 +2003,7 @@ APFloat::convertFromHexadecimalString(const char *p, firstSignificantDigit = p; for(;;) { - uint64_t hex_value; + integerPart hex_value; if(*p == '.') { assert(dot == 0); -- 2.34.1