diff options
author | Geoff Keating <geoffk@cygnus.com> | 1999-12-30 23:37:12 +0000 |
---|---|---|
committer | Geoff Keating <geoffk@cygnus.com> | 1999-12-30 23:37:12 +0000 |
commit | 4efb5faf8c15ba85539bf1fbd9e05154ab65b4c4 (patch) | |
tree | 33b516a2d5b46a632d906aadc63b93234975e34c /sysdeps/powerpc | |
parent | 17440fd3783e50592cadefef5cfb8d1a2ce8a035 (diff) | |
download | glibc-4efb5faf8c15ba85539bf1fbd9e05154ab65b4c4.tar.gz glibc-4efb5faf8c15ba85539bf1fbd9e05154ab65b4c4.tar.xz glibc-4efb5faf8c15ba85539bf1fbd9e05154ab65b4c4.zip |
* sysdeps/powerpc/fpu/bits/fenvinline.h (feraiseexcept): Remove
the (void) casts as now feraiseexcept returns a value. (feclearexcept): Likewise. * sysdeps/unix/sysv/linux/powerpc/sysdep.h: Don't use '%r0', it interferes with the macros for AIX. 1999-12-30 Geoff Keating <geoffk@cygnus.com> * sysdeps/powerpc/fpu/bits/fenvinline.h (feraiseexcept): Remove the (void) casts as now feraiseexcept returns a value. (feclearexcept): Likewise. * sysdeps/unix/sysv/linux/powerpc/sysdep.h: Don't use '%r0', it interferes with the macros for AIX.
Diffstat (limited to 'sysdeps/powerpc')
-rw-r--r-- | sysdeps/powerpc/fpu/bits/fenvinline.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/powerpc/fpu/bits/fenvinline.h b/sysdeps/powerpc/fpu/bits/fenvinline.h index 6ab3105a3b..f13cd70cc1 100644 --- a/sysdeps/powerpc/fpu/bits/fenvinline.h +++ b/sysdeps/powerpc/fpu/bits/fenvinline.h @@ -39,8 +39,8 @@ ? (__extension__ ({ __asm__ __volatile__ \ ("mtfsb1 %s0" \ : : "i#*X"(__builtin_ffs (__excepts))); \ - (void)0; })) \ - : (void)0) \ + 0; })) \ + : 0) \ : (feraiseexcept) (__excepts)) /* Inline definition for feclearexcept. */ @@ -52,8 +52,8 @@ ? (__extension__ ({ __asm__ __volatile__ \ ("mtfsb0 %s0" \ : : "i#*X"(__builtin_ffs (__excepts))); \ - (void)0; })) \ - : (void)0) \ + 0; })) \ + : 0) \ : (feclearexcept) (__excepts)) #endif /* __GNUC__ && !_SOFT_FLOAT */ |