From fa48372a24463e5516bd32ad2a777e317fca81c7 Mon Sep 17 00:00:00 2001 From: Dale Johannesen Date: Wed, 14 May 2008 22:53:25 +0000 Subject: Don't assume underlying APInt type is limited to 64 bits. llvm-svn: 51135 --- llvm/lib/Support/APFloat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Support/APFloat.cpp') diff --git a/llvm/lib/Support/APFloat.cpp b/llvm/lib/Support/APFloat.cpp index de333829dae..0ee3d546b86 100644 --- a/llvm/lib/Support/APFloat.cpp +++ b/llvm/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); -- cgit v1.2.3