mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
* sysdeps/mips/fpu/fesetround.c (fesetround): Use fpu_control_t.
* sysdeps/mips/fpu/fgetexcptflg.c (fegetexceptflag): Likewise. * sysdeps/mips/fpu/fsetexcptflg.c (fesetexceptflag): Likewise.
This commit is contained in:
parent
b5186f3bba
commit
af7eda0ff6
@ -1,3 +1,10 @@
|
||||
2008-03-26 David Stephenson <david.stephenson@sicortex.com>
|
||||
Daniel Jacobowitz <dan@codesourcery.com>
|
||||
|
||||
* sysdeps/mips/fpu/fesetround.c (fesetround): Use fpu_control_t.
|
||||
* sysdeps/mips/fpu/fgetexcptflg.c (fegetexceptflag): Likewise.
|
||||
* sysdeps/mips/fpu/fsetexcptflg.c (fesetexceptflag): Likewise.
|
||||
|
||||
2008-03-09 Andreas Jaeger <aj@suse.de>
|
||||
|
||||
[BZ #5753]
|
||||
|
@ -24,7 +24,7 @@
|
||||
int
|
||||
fesetround (int round)
|
||||
{
|
||||
unsigned short int cw;
|
||||
fpu_control_t cw;
|
||||
|
||||
if ((round & ~0x3) != 0)
|
||||
/* ROUND is no valid rounding mode. */
|
||||
|
@ -24,7 +24,7 @@
|
||||
int
|
||||
fegetexceptflag (fexcept_t *flagp, int excepts)
|
||||
{
|
||||
fexcept_t temp;
|
||||
fpu_control_t temp;
|
||||
|
||||
/* Get the current exceptions. */
|
||||
_FPU_GETCW (temp);
|
||||
|
@ -24,7 +24,7 @@
|
||||
int
|
||||
fesetexceptflag (const fexcept_t *flagp, int excepts)
|
||||
{
|
||||
fexcept_t temp;
|
||||
fpu_control_t temp;
|
||||
|
||||
/* Get the current exceptions. */
|
||||
_FPU_GETCW (temp);
|
||||
|
Loading…
Reference in New Issue
Block a user