projects
/
kopensolaris-gnu
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e7c0db5
)
(_FP_FRAC_SRS_2): Fix computation of sticky bit.
author
drepper
<drepper>
Mon, 16 Oct 2000 18:15:50 +0000
(18:15 +0000)
committer
drepper
<drepper>
Mon, 16 Oct 2000 18:15:50 +0000
(18:15 +0000)
soft-fp/op-2.h
patch
|
blob
|
history
diff --git
a/soft-fp/op-2.h
b/soft-fp/op-2.h
index
ad3fbc5
..
45bae63
100644
(file)
--- a/
soft-fp/op-2.h
+++ b/
soft-fp/op-2.h
@@
-79,7
+79,8
@@
else \
{ \
X##_f0 = (X##_f1 >> ((N) - _FP_W_TYPE_SIZE) | \
- (((X##_f1 << (sz - (N))) | X##_f0) != 0)); \
+ (((X##_f1 << (2*_FP_W_TYPE_SIZE - (N))) | \
+ X##_f0) != 0)); \
X##_f1 = 0; \
} \
} while (0)