From f20079d219d7973ab43712adad6268901dc0eac3 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Thu, 22 Jun 2017 22:57:28 +0000 Subject: Fix float128_private.h redefinition of SET_RESTORE_ROUNDL. As with other long double identifiers, float128_private.h has a redefinition of SET_RESTORE_ROUNDL. However, that redefinition is broken, since this is a macro with one argument being defined to take no arguments. This patch fixes the redefinition. (x86_64 needs the redefinition because SET_RESTORE_ROUNDL only changes the x87 rounding mode, whereas _Float128 arithmetic uses the SSE rounding mode instead on x86_64.) Tested for x86_64 (in conjunction with float128 patches). * sysdeps/ieee754/float128/float128_private.h [SET_RESTORE_ROUNDF128] (SET_RESTORE_ROUNDL): Take an argument and pass it to SET_RESTORE_ROUNDF128. --- sysdeps/ieee754/float128/float128_private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysdeps/ieee754') diff --git a/sysdeps/ieee754/float128/float128_private.h b/sysdeps/ieee754/float128/float128_private.h index c8b153d0c1..5e6ed78085 100644 --- a/sysdeps/ieee754/float128/float128_private.h +++ b/sysdeps/ieee754/float128/float128_private.h @@ -51,7 +51,7 @@ #ifdef SET_RESTORE_ROUNDF128 # undef SET_RESTORE_ROUNDL -# define SET_RESTORE_ROUNDL() SET_RESTORE_ROUNDF128() +# define SET_RESTORE_ROUNDL(RM) SET_RESTORE_ROUNDF128 (RM) #endif -- cgit 1.4.1