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