about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilco Dijkstra <wdijkstr@arm.com>2014-10-24 13:19:24 +0000
committerWilco Dijkstra <wdijkstr@arm.com>2014-10-24 13:19:24 +0000
commit8b1af712d1556573cd7c71d872eab808faf854fb (patch)
tree43eba375094d1f44554c54709499d062e55ba308
parenta7b00c110132b4cb64a7f6b7b23a1c0ebbe54cd3 (diff)
downloadglibc-8b1af712d1556573cd7c71d872eab808faf854fb.tar.gz
glibc-8b1af712d1556573cd7c71d872eab808faf854fb.tar.xz
glibc-8b1af712d1556573cd7c71d872eab808faf854fb.zip
Call get_rounding_mode rather than duplicating functionality.
-rw-r--r--ChangeLog5
-rw-r--r--sysdeps/aarch64/fpu/fegetround.c6
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 2302d7ef5e..66447bf52a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
 
+	* sysdeps/aarch64/fpu/fegetround.c (fegetround):
+	Call get_rounding_mode.
+
+2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
+
 	* sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept):
 	Simplify logic.
 
diff --git a/sysdeps/aarch64/fpu/fegetround.c b/sysdeps/aarch64/fpu/fegetround.c
index a970ce3569..5428d4de34 100644
--- a/sysdeps/aarch64/fpu/fegetround.c
+++ b/sysdeps/aarch64/fpu/fegetround.c
@@ -17,13 +17,11 @@
    <http://www.gnu.org/licenses/>.  */
 
 #include <fenv.h>
-#include <fpu_control.h>
+#include <get-rounding-mode.h>
 
 int
 fegetround (void)
 {
-  fpu_control_t fpcr;
-  _FPU_GETCW (fpcr);
-  return fpcr & FE_TOWARDZERO;
+  return get_rounding_mode ();
 }
 libm_hidden_def (fegetround)