mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-13 00:30:07 +00:00
22562bb222
This patch fixes bug 16390, incorrect signs of zero results from ldbl-128ibm atan2l, soft-float only. The problem is a longstanding GCC bug with fabsl not being correct for signed zero for soft float, and the fix is using -fno-builtin-fabsl as a workaround, as already done for various other source files. Tested powerpc-nofpu. * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math] (CFLAGS-e_atan2l.c): Use -fno-builtin-fabsl.
33 lines
1.2 KiB
Makefile
33 lines
1.2 KiB
Makefile
# Makefile fragment for PowerPC with no FPU.
|
|
|
|
ifeq ($(subdir),soft-fp)
|
|
sysdep_routines += $(gcc-single-routines) $(gcc-double-routines) \
|
|
sim-full atomic-feholdexcept atomic-feclearexcept \
|
|
atomic-feupdateenv flt-rounds
|
|
endif
|
|
|
|
ifeq ($(subdir),math)
|
|
libm-support += fenv_const
|
|
CPPFLAGS += -I../soft-fp/
|
|
# The follow CFLAGS are a work around for GCC Bugzilla Bug 29253
|
|
# "expand_abs wrong default code for floating point"
|
|
# As this is not a regression, a fix is not likely to go into
|
|
# gcc-4.1.1 and may be too late for gcc-4.2. So we need these flags
|
|
# until the fix in a gcc release and glibc drops support for earlier
|
|
# versions of gcc.
|
|
CFLAGS-e_atan2l.c += -fno-builtin-fabsl
|
|
CFLAGS-e_hypotl.c += -fno-builtin-fabsl
|
|
CFLAGS-e_powl.c += -fno-builtin-fabsl
|
|
CFLAGS-s_ccoshl.c += -fno-builtin-fabsl
|
|
CFLAGS-s_csinhl.c += -fno-builtin-fabsl
|
|
CFLAGS-s_clogl.c += -fno-builtin-fabsl
|
|
CFLAGS-s_clog10l.c += -fno-builtin-fabsl
|
|
CFLAGS-s_csinl.c += -fno-builtin-fabsl
|
|
CFLAGS-s_csqrtl.c += -fno-builtin-fabsl
|
|
CFLAGS-w_acosl.c += -fno-builtin-fabsl
|
|
CFLAGS-w_asinl.c += -fno-builtin-fabsl
|
|
CFLAGS-w_atanhl.c += -fno-builtin-fabsl
|
|
CFLAGS-w_j0l.c += -fno-builtin-fabsl
|
|
CFLAGS-w_j1l.c += -fno-builtin-fabsl
|
|
endif
|