diff options
author | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2014-04-29 07:45:05 -0500 |
---|---|---|
committer | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2014-04-29 07:45:05 -0500 |
commit | dc041bd4dbaf0f22b962647e0d0a1b8090d0e679 (patch) | |
tree | 056a98141303f0e131da4da5a1f4b5056ae9f828 /sysdeps/powerpc/fpu/feenablxcpt.c | |
parent | PowerPC: Suppress unnecessary FPSCR write (diff) | |
download | glibc-dc041bd4dbaf0f22b962647e0d0a1b8090d0e679.tar.gz glibc-dc041bd4dbaf0f22b962647e0d0a1b8090d0e679.tar.bz2 glibc-dc041bd4dbaf0f22b962647e0d0a1b8090d0e679.zip |
Fix
Diffstat (limited to 'sysdeps/powerpc/fpu/feenablxcpt.c')
-rw-r--r-- | sysdeps/powerpc/fpu/feenablxcpt.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 (); |