mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-23 03:10:05 +00:00
SH: Do not re-write fpscr after reading it.
This commit is contained in:
parent
793ea8518f
commit
366af02c96
@ -1,3 +1,10 @@
|
||||
2012-06-09 Thomas Schwinge <thomas@codesourcery.com>
|
||||
|
||||
* sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Do not re-write fpscr after
|
||||
reading it.
|
||||
* sysdeps/sh/sh4/fpu/fegetexcept.c (fegetexcept): Likewise.
|
||||
* sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
|
||||
|
||||
2012-06-09 Kaz Kojima <kkojima@rr.iij4u.or.jp>
|
||||
|
||||
* sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: New file.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Store current floating-point environment.
|
||||
Copyright (C) 1997, 1998, 1999, 2000, 2012 Free Software Foundation, Inc.
|
||||
Copyright (C) 1997-2012 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -24,9 +24,6 @@ fegetenv (fenv_t *envp)
|
||||
{
|
||||
fpu_control_t temp;
|
||||
_FPU_GETCW (temp);
|
||||
/* When read fpscr, this was initialized.
|
||||
We need to rewrite value of temp. */
|
||||
_FPU_SETCW (temp);
|
||||
|
||||
envp->__fpscr = temp;
|
||||
|
||||
|
@ -27,9 +27,6 @@ fegetexcept (void)
|
||||
|
||||
/* Get current exceptions. */
|
||||
_FPU_GETCW (temp);
|
||||
/* When read fpscr, this was initialized.
|
||||
We need to rewrite value of temp. */
|
||||
_FPU_SETCW (temp);
|
||||
|
||||
return (temp >> 5) & FE_ALL_EXCEPT;
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Set current rounding direction.
|
||||
Copyright (C) 1998, 2000, 2005, 2012 Free Software Foundation, Inc.
|
||||
Copyright (C) 1998-2012 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
Contributed by Andreas Jaeger <aj@arthur.rhein-neckar.de>, 1998.
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Raise given exceptions.
|
||||
Copyright (C) 1997, 1998, 2000, 2002, 2012 Free Software Foundation, Inc.
|
||||
Copyright (C) 1997-2012 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
Contributed by Nobuhiro Iwamatsu <iwamatsu@nigauri.org>, 2012.
|
||||
|
||||
|
@ -26,9 +26,6 @@ fetestexcept (int excepts)
|
||||
|
||||
/* Get current exceptions. */
|
||||
_FPU_GETCW (temp);
|
||||
/* When read fpscr, this was initialized.
|
||||
We need to rewrite value of temp. */
|
||||
_FPU_SETCW (temp);
|
||||
|
||||
return temp & excepts & FE_ALL_EXCEPT;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user