aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2008-05-14 22:05:31 +0000
committerDale Johannesen <dalej@apple.com>2008-05-14 22:05:31 +0000
commitab18bd7f2538ffbf4eb3a6c4fc21f513998edff3 (patch)
treec1b550aa5ac1c8bbe3c3366557455d19db3a4239 /lib
parenta6fe65a41e6af51def437f4348241ca05c096b30 (diff)
downloadexternal_llvm-ab18bd7f2538ffbf4eb3a6c4fc21f513998edff3.zip
external_llvm-ab18bd7f2538ffbf4eb3a6c4fc21f513998edff3.tar.gz
external_llvm-ab18bd7f2538ffbf4eb3a6c4fc21f513998edff3.tar.bz2
Remove undefined behavior in hex string->APFloat
conversion. Try 0x1.0000a4p+0f. Neil, please review. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51132 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-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 187b108..de33382 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);