about summary refs log tree commit diff
path: root/sysdeps/powerpc/fpu
diff options
context:
space:
mode:
authorAdhemerval Zanella <azanella@linux.vnet.ibm.com>2014-04-29 07:45:05 -0500
committerAdhemerval Zanella <azanella@linux.vnet.ibm.com>2014-04-29 07:45:05 -0500
commitdc041bd4dbaf0f22b962647e0d0a1b8090d0e679 (patch)
tree056a98141303f0e131da4da5a1f4b5056ae9f828 /sysdeps/powerpc/fpu
parent18f2945ae9216cfcd53a162080a73e3d719de9e6 (diff)
downloadglibc-dc041bd4dbaf0f22b962647e0d0a1b8090d0e679.tar.gz
glibc-dc041bd4dbaf0f22b962647e0d0a1b8090d0e679.tar.xz
glibc-dc041bd4dbaf0f22b962647e0d0a1b8090d0e679.zip
Fix
Diffstat (limited to 'sysdeps/powerpc/fpu')
-rw-r--r--sysdeps/powerpc/fpu/fedisblxcpt.c2
-rw-r--r--sysdeps/powerpc/fpu/feenablxcpt.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/powerpc/fpu/fedisblxcpt.c b/sysdeps/powerpc/fpu/fedisblxcpt.c
index 94c01abb86..448645cea4 100644
--- a/sysdeps/powerpc/fpu/fedisblxcpt.c
+++ b/sysdeps/powerpc/fpu/fedisblxcpt.c
@@ -23,7 +23,7 @@ int
 fedisableexcept (int excepts)
 {
   fenv_union_t fe, curr;
-  int result = 0, new;
+  int result, new;
 
   /* Get current exception mask to return.  */
   fe.fenv = curr.fenv = fegetenv_register ();
diff --git a/sysdeps/powerpc/fpu/feenablxcpt.c b/sysdeps/powerpc/fpu/feenablxcpt.c
index 01a68cf086..5c0891d344 100644
--- a/sysdeps/powerpc/fpu/feenablxcpt.c
+++ b/sysdeps/powerpc/fpu/feenablxcpt.c
@@ -23,7 +23,7 @@ int
 feenableexcept (int excepts)
 {
   fenv_union_t fe, curr;
-  int result = 0, new;
+  int result, new;
 
   /* Get current exception mask to return.  */
   fe.fenv = curr.fenv = fegetenv_register ();