summaryrefslogtreecommitdiff
path: root/lib/Support
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Support')
-rw-r--r--lib/Support/APFloat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/APFloat.cpp b/lib/Support/APFloat.cpp
index 187b108048..de333829da 100644
--- a/lib/Support/APFloat.cpp
+++ b/lib/Support/APFloat.cpp
@@ -2003,7 +2003,7 @@ APFloat::convertFromHexadecimalString(const char *p,
firstSignificantDigit = p;
for(;;) {
- unsigned int hex_value;
+ uint64_t hex_value;
if(*p == '.') {
assert(dot == 0);