Call libc_fetestexcept_aarch64 from math_private.h rather than duplicating functionality.

This commit is contained in:
Wilco Dijkstra 2014-10-24 13:23:12 +00:00
parent 1c8810ed95
commit 6a9ad2faee
2 changed files with 7 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2014-10-24 Wilco Dijkstra <wdijkstr@arm.com>
* sysdeps/aarch64/fpu/fgetexcptflg.c (fegetexceptflag):
Call libc_fetestexcept_aarch64.
2014-10-24 Wilco Dijkstra <wdijkstr@arm.com>
* sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept):

View File

@ -17,17 +17,11 @@
<http://www.gnu.org/licenses/>. */
#include <fenv.h>
#include <fpu_control.h>
#include <math_private.h>
int
fegetexceptflag (fexcept_t *flagp, int excepts)
{
fpu_fpsr_t fpsr;
/* Get the current exceptions. */
_FPU_GETFPSR (fpsr);
*flagp = fpsr & excepts & FE_ALL_EXCEPT;
*flagp = libc_fetestexcept_aarch64 (excepts);
return 0;
}