Call libc_fetestexcept_aarch64.
authorWilco Dijkstra <wdijkstr@arm.com>
Mon, 22 Dec 2014 17:01:33 +0000 (17:01 +0000)
committerWilco Dijkstra <wdijkstr@arm.com>
Mon, 22 Dec 2014 17:14:54 +0000 (17:14 +0000)
ChangeLog
sysdeps/aarch64/fpu/ftestexcept.c

index a026ad17f771180035d20231e111d902e0827880..cb161433cbccdca39b99ee5f69054731222f4dca 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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):
index 73e01d4388b536f369ed08e75b1fd093514acb07..05787b10e4a3660c9486991ac2c55c9d1d06d01d 100644 (file)
    <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)