* sysdeps/powerpc/fpu/feenablxcpt.c: Correct bogus checkin.

* sysdeps/powerpc/fpu/feenablxcpt.c: Correct bogus checkin.
This commit is contained in:
Geoff Keating 2000-08-28 06:20:43 +00:00
parent e4df97b85c
commit 5a3641520e
2 changed files with 4 additions and 2 deletions

View File

@ -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.

View File

@ -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;