about summary refs log tree commit diff
path: root/sysdeps/powerpc/fpu
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/powerpc/fpu')
-rw-r--r--sysdeps/powerpc/fpu/feholdexcpt.c2
-rw-r--r--sysdeps/powerpc/fpu/fesetround.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/powerpc/fpu/feholdexcpt.c b/sysdeps/powerpc/fpu/feholdexcpt.c
index a75adbf49e..c19d223aa7 100644
--- a/sysdeps/powerpc/fpu/feholdexcpt.c
+++ b/sysdeps/powerpc/fpu/feholdexcpt.c
@@ -34,5 +34,5 @@ feholdexcept (fenv_t *envp)
   /* Put the new state in effect.  */
   fesetenv_register (u.fenv);
 
-  return 1;
+  return 0;
 }
diff --git a/sysdeps/powerpc/fpu/fesetround.c b/sysdeps/powerpc/fpu/fesetround.c
index 875c89768a..016f8e008d 100644
--- a/sysdeps/powerpc/fpu/fesetround.c
+++ b/sysdeps/powerpc/fpu/fesetround.c
@@ -26,7 +26,7 @@ fesetround (int round)
   fenv_union_t u;
 
   if ((unsigned int) round > 3)
-    return 0;
+    return 1;
 
   /* Get the current state.  */
   u.fenv = fegetenv_register ();
@@ -37,5 +37,5 @@ fesetround (int round)
   /* Put the new state in effect.  */
   fesetenv_register (u.fenv);
 
-  return 1;
+  return 0;
 }