[PATCH v2] Provide a C++ version of issignaling that does not use __MATH_TG

Florian Weimer fweimer@redhat.com
Fri Aug 18 12:32:00 GMT 2017


On 08/18/2017 02:24 PM, Gabriel F. T. Gomes wrote:
> +# ifndef __cplusplus
> +#  define issignaling(x) __MATH_TG ((x), __issignaling, (x))
> +# else
> +   /* In C++ mode, __MATH_TG cannot be used, because it relies on
> +      __builtin_types_compatible_p, which is a C-only builtin.  On the
> +      other hand, overloading provides the means to distinguish between
> +      the floating-point types.  The overloading resolution will match
> +      the correct parameter (regardless of type qualifiers (i.e.: const
> +      and volatile).  */
> +extern "C++" {
> +int issignaling (float __val) { return __issignalingf (__val); }
> +int issignaling (double __val) { return __issignaling (__val); }
> +int issignaling (long double __val) { return __issignalingl (__val); }
> +#if __HAVE_DISTINCT_FLOAT128
> +int issignaling (_Float128  __val) { return __issignalingf128 (__val); }
> +#endif
> +} /* extern C++ */
> +# endif
All function definitions need an inline keyword.

The inner #ifdef needs to be indented.  There's a spurious space after
_Float128.

Thanks,
Florian



More information about the Libc-alpha mailing list