mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-14 17:11:06 +00:00
d421868bb8
This patch adds no FMA generation for e_pow to avoid precision issues for powerpc. This fixes BZ#18104.
7 lines
201 B
Makefile
7 lines
201 B
Makefile
ifeq ($(subdir),math)
|
|
# branred depends on precise IEEE double rounding
|
|
CFLAGS-branred.c = $(config-cflags-nofma)
|
|
CFLAGS-e_sqrt.c = $(config-cflags-nofma)
|
|
CFLAGS-e_pow.c = $(config-cflags-nofma)
|
|
endif
|