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:
5a35fe6
)
Fix typo.
author
Anton Korobeynikov
<asl@math.spbu.ru>
Fri, 21 Aug 2009 23:09:47 +0000
(23:09 +0000)
committer
Anton Korobeynikov
<asl@math.spbu.ru>
Fri, 21 Aug 2009 23:09:47 +0000
(23:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79688
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 2d8df5eb5832c6caa55cb484ddbb9c9825eeb33b..d50e4e560181f7de33ff27771216094b0f97407a 100644
(file)
--- a/
lib/Support/APFloat.cpp
+++ b/
lib/Support/APFloat.cpp
@@
-2740,7
+2740,7
@@
APFloat::convertQuadrupleAPFloatToAPInt() const
words[0] = mysignificand;
words[1] = ((uint64_t)(sign & 1) << 63) |
((myexponent & 0x7fff) << 48) |
- (mysignificand & 0xffffffffffffLL);
+ (mysignificand
2
& 0xffffffffffffLL);
return APInt(128, 2, words);
}