Call libc_fetestexcept_aarch64 from math_private.h rather than duplicating functionality.
authorWilco Dijkstra <wdijkstr@arm.com>
Fri, 24 Oct 2014 13:23:12 +0000 (13:23 +0000)
committerWilco Dijkstra <wdijkstr@arm.com>
Fri, 24 Oct 2014 13:23:12 +0000 (13:23 +0000)
ChangeLog
sysdeps/aarch64/fpu/fgetexcptflg.c

index d8462ac..98548cb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 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):
        Call libc_feholdexcept_aarch64.
 
index d25da1c..ee19d6e 100644 (file)
    <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;
 }