about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--sysdeps/powerpc/fpu/feenablxcpt.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 37000a9b9b..9103886e84 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2000-08-27  Geoff Keating  <geoffk@cygnus.com>
 
+	* sysdeps/powerpc/fpu/feenablxcpt.c: Correct bogus checkin.
+
 	* sysdeps/powerpc/fpu/fedisblxcpt.c: New file.
 	* sysdeps/powerpc/fpu/feenablxcpt.c: New file.
 	* sysdeps/powerpc/fpu/fegetexcept.c: New file.
diff --git a/sysdeps/powerpc/fpu/feenablxcpt.c b/sysdeps/powerpc/fpu/feenablxcpt.c
index 1d426e8a78..c3ea0df38d 100644
--- a/sysdeps/powerpc/fpu/feenablxcpt.c
+++ b/sysdeps/powerpc/fpu/feenablxcpt.c
@@ -46,9 +46,9 @@ feenableexcept (int excepts)
 
   new = fegetexcept ();
   if (new != 0 && result == 0)
-    (void)__fe_nomask_env (void);
+    (void)__fe_nomask_env ();
 
-  if ((old & excepts) != excepts)
+  if ((new & excepts) != excepts)
     result = -1;
 
   return result;