From: Gabriel F. T. Gomes Date: Wed, 1 Feb 2017 19:54:25 +0000 (-0200) Subject: float128: Enable use of IEEE wrapper templates X-Git-Tag: glibc-2.26~503 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=cdd45522b6e87369afc341402bda7a95bdf83380;p=glibc.git float128: Enable use of IEEE wrapper templates The templates for the IEEE functions wrappers implement wrappers that do not rely on _LIB_VERSION / matherr / __kernel_standard functionality to set errno and fix the return value of the functions. The wrappers are ready to be used by all floating-point types, however they will first be used by float128, since the old wrappers for float, double, and long double need to be first deprecated and versioned. This commits defines __USE_WRAPPER_TEMPLATE to 1 for float128 files, so that the new wrapper templates are used for this type. * sysdeps/generic/math-type-macros-float128.h (__USE_WRAPPER_TEMPLATE): Define to 1 to enable use of the wrapper templates. --- diff --git a/ChangeLog b/ChangeLog index d2282058ba..04e88e7533 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2017-05-14 Gabriel F. T. Gomes + + * sysdeps/generic/math-type-macros-float128.h + (__USE_WRAPPER_TEMPLATE): Define to 1 to enable use of the + wrapper templates. + 2017-05-14 Paul E. Murphy Gabriel F. T. Gomes diff --git a/sysdeps/generic/math-type-macros-float128.h b/sysdeps/generic/math-type-macros-float128.h index dcb8560548..5d734db29f 100644 --- a/sysdeps/generic/math-type-macros-float128.h +++ b/sysdeps/generic/math-type-macros-float128.h @@ -36,4 +36,7 @@ /* Supply the generic macros. */ #include +/* Use the type-generic wrapper templates. */ +#define __USE_WRAPPER_TEMPLATE 1 + #endif