projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f6fd351
)
fix error in previous ld80 fpclassify commit
author
Rich Felker
<dalias@aerifal.cx>
Thu, 30 Jun 2011 20:37:51 +0000
(16:37 -0400)
committer
Rich Felker
<dalias@aerifal.cx>
Thu, 30 Jun 2011 20:37:51 +0000
(16:37 -0400)
src/math/__fpclassifyl.c
patch
|
blob
|
history
diff --git
a/src/math/__fpclassifyl.c
b/src/math/__fpclassifyl.c
index 4f4f37a7eac6ee8a463c1245a9b5bfefe69282ee..a4e354ce11ddbd54528cd4775aa507e29828fa33 100644
(file)
--- a/
src/math/__fpclassifyl.c
+++ b/
src/math/__fpclassifyl.c
@@
-7,7
+7,7
@@
int __fpclassifyl(long double __x)
union {
long double __ld;
__uint16_t __hw[5];
-
__
int64_t __m;
+ int64_t __m;
} __y = { __x };
int __ee = __y.__hw[4]&0x7fff;
if (!__ee) return __y.__m ? FP_SUBNORMAL : FP_ZERO;