projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a6c3112
)
Don't assume underlying APInt type is limited
author
Dale Johannesen
<dalej@apple.com>
Wed, 14 May 2008 22:53:25 +0000
(22:53 +0000)
committer
Dale Johannesen
<dalej@apple.com>
Wed, 14 May 2008 22:53:25 +0000
(22:53 +0000)
to 64 bits.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51135
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Support/APFloat.cpp
patch
|
blob
|
history
diff --git
a/lib/Support/APFloat.cpp
b/lib/Support/APFloat.cpp
index de333829dae7e6a3b31133b7bd8ccb578d3a18ee..0ee3d546b868ebde8c4ae9e8e216194fd0271df1 100644
(file)
--- 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;
+
integerPar
t hex_value;
if(*p == '.') {
assert(dot == 0);