mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
soft-fp: Correct _FP_TO_INT formatting.
This patch corrects some soft-fp formatting that failed to follow the GNU Coding Standards. Tested for powerpc-nofpu that the disassembly of installed shared libraries is unchanged by this patch. * soft-fp/op-common.h (_FP_TO_INT): Correct formatting.
This commit is contained in:
parent
af296fcdab
commit
4e8afe69e1
@ -1,3 +1,7 @@
|
||||
2014-09-17 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* soft-fp/op-common.h (_FP_TO_INT): Correct formatting.
|
||||
|
||||
2014-09-16 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
[BZ #6652]
|
||||
|
@ -1373,11 +1373,13 @@
|
||||
r = 1; \
|
||||
r <<= rsize - 1; \
|
||||
r -= 1 - X##_s; \
|
||||
} else { \
|
||||
r = 0; \
|
||||
if (!X##_s) \
|
||||
r = ~r; \
|
||||
} \
|
||||
} \
|
||||
else \
|
||||
{ \
|
||||
r = 0; \
|
||||
if (!X##_s) \
|
||||
r = ~r; \
|
||||
} \
|
||||
\
|
||||
if (rsigned && X##_s && X##_e == _FP_EXPBIAS_##fs + rsize - 1) \
|
||||
{ \
|
||||
|
Loading…
Reference in New Issue
Block a user