mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-31 14:01:18 +08:00
soft-fp: fix floating-point to integer unsigned saturation.
This commit is contained in:
parent
10e1cf6b73
commit
99fd9f47ef
@ -1,3 +1,8 @@
|
||||
2013-10-12 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* soft-fp/op-common.h (_FP_TO_INT): Reverse test of sign for
|
||||
computing saturated result for unsigned overflow.
|
||||
|
||||
2013-10-11 Siddhesh Poyarekar <siddhesh@redhat.com>
|
||||
Jeff Law <law@redhat.com>
|
||||
|
||||
|
@ -1284,7 +1284,7 @@ do { \
|
||||
r -= 1 - X##_s; \
|
||||
} else { \
|
||||
r = 0; \
|
||||
if (X##_s) \
|
||||
if (!X##_s) \
|
||||
r = ~r; \
|
||||
} \
|
||||
\
|
||||
|
Loading…
x
Reference in New Issue
Block a user