Call libc_fetestexcept_aarch64.

This commit is contained in:
Wilco Dijkstra 2014-12-22 17:01:33 +00:00
parent 97be3cacec
commit 9b47df5814
2 changed files with 7 additions and 7 deletions

View File

@ -1,3 +1,8 @@
2014-12-22 Wilco Dijkstra <wdijkstr@arm.com>
* sysdeps/aarch64/fpu/ftestexcept.c (fetestexcept):
Call libc_fetestexcept_aarch64.
2014-12-22 Wilco Dijkstra <wdijkstr@arm.com>
* sysdeps/aarch64/fpu/fesetround.c (fesetround):

View File

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