Set SH fpcsr register which read again.
authorKaz Kojima <kkojima@rr.iij4u.or.jp>
Thu, 5 Apr 2012 02:57:03 +0000 (11:57 +0900)
committerKaz Kojima <kkojima@rr.iij4u.or.jp>
Thu, 5 Apr 2012 02:57:03 +0000 (11:57 +0900)
ChangeLog
sysdeps/sh/sh4/fpu/fegetenv.c
sysdeps/sh/sh4/fpu/ftestexcept.c

index 092756e..9c99479 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
 
+       * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Set fpscr register which
+       read again.
+       * sysdeps/sh/sh4/fpu/ftestexcept.c: Likewise.
+
+2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
+
        * sysdeps/sh/sh4/fpu/fraiseexcpt.c (feraiseexcept): Produce
        an exception using FPU order intentionally.
 
index 68687dc..3103316 100644 (file)
@@ -1,5 +1,5 @@
 /* Store current floating-point environment.
-   Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1997, 1998, 1999, 2000, 2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -24,6 +24,10 @@ fegetenv (fenv_t *envp)
 {
   unsigned long int temp;
   _FPU_GETCW (temp);
+  /* When read fpscr, this was initialized.
+     We need to rewrite value of temp. */
+  _FPU_SETCW (temp);
+
   envp->__fpscr = temp;
 
   return 0;
index 9e0bfc5..c2e1772 100644 (file)
@@ -26,6 +26,9 @@ fetestexcept (int excepts)
 
   /* Get current exceptions.  */
   _FPU_GETCW (temp);
+  /* When read fpscr, this was initialized.
+     We need to rewrite value of temp. */
+  _FPU_SETCW (temp);
 
   return temp & excepts & FE_ALL_EXCEPT;
 }