Share some code that is common between integer and
[oota-llvm.git] / lib / Support / APFloat.cpp
index de333829dae7e6a3b31133b7bd8ccb578d3a18ee..0ee3d546b868ebde8c4ae9e8e216194fd0271df1 100644 (file)
@@ -2003,7 +2003,7 @@ APFloat::convertFromHexadecimalString(const char *p,
   firstSignificantDigit = p;
 
   for(;;) {
-    uint64_t hex_value;
+    integerPart hex_value;
 
     if(*p == '.') {
       assert(dot == 0);