diff options
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 */ |