00db10
commit d421868bb85d1459b1d2df520bb26f3e11aa195a
00db10
Author: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
00db10
Date:   Tue Mar 10 09:38:54 2015 -0400
00db10
00db10
    powerpc: Fix incorrect results for pow when using FMA
00db10
    
00db10
    This patch adds no FMA generation for e_pow to avoid precision issues
00db10
    for powerpc.  This fixes BZ#18104.
00db10
00db10
diff --git a/sysdeps/ieee754/dbl-64/Makefile b/sysdeps/ieee754/dbl-64/Makefile
00db10
index 35f545f..5557c75 100644
00db10
--- a/sysdeps/ieee754/dbl-64/Makefile
00db10
+++ b/sysdeps/ieee754/dbl-64/Makefile
00db10
@@ -2,4 +2,5 @@ ifeq ($(subdir),math)
00db10
 # branred depends on precise IEEE double rounding
00db10
 CFLAGS-branred.c = $(config-cflags-nofma)
00db10
 CFLAGS-e_sqrt.c = $(config-cflags-nofma)
00db10
+CFLAGS-e_pow.c = $(config-cflags-nofma)
00db10
 endif