]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Conditionally define FP_FAST_FMA* for ARM.
authorJoseph Myers <joseph@codesourcery.com>
Tue, 19 Oct 2010 20:09:24 +0000 (20:09 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Tue, 19 Oct 2010 20:09:24 +0000 (20:09 +0000)
ChangeLog.arm
sysdeps/arm/bits/mathdef.h

index 02affa8ce36de7e56c2c79524bc3e8ed15125c75..69a28c6ba8b06137ea1f9261be3a26ffac3ab95c 100644 (file)
@@ -1,3 +1,8 @@
+2010-10-19  Joseph Myers  <joseph@codesourcery.com>
+
+       * sysdeps/arm/bits/mathdef.h (FP_FAST_FMA, FP_FAST_FMAF,
+       FP_FAST_FMAL): Define if associated GCC macros are defined.
+
 2010-10-11  Joseph Myers  <joseph@codesourcery.com>
 
        * sysdeps/arm/eabi/feupdateenv.c (feupdateenv): Add
index daca1102fc2a5d37ef1e2d6670ec94fe6ac4b3a0..97f5d4d2275b2b9b1217d633c6f4ab01630cdfe5 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1999, 2000, 2004, 2006, 2007
+/* Copyright (C) 1999, 2000, 2004, 2006, 2007, 2010
    Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
@@ -34,6 +34,20 @@ typedef double double_t;     /* `double' expressions are evaluated as
 # define FP_ILOGB0     (-2147483647)
 # define FP_ILOGBNAN   (2147483647)
 
+/* The GCC 4.6 compiler will define __FP_FAST_FMA{,F,L} if the fma{,f,l}
+   builtins are supported.  */
+# if __FP_FAST_FMA
+#  define FP_FAST_FMA 1
+# endif
+
+# if __FP_FAST_FMAF
+#  define FP_FAST_FMAF 1
+# endif
+
+# if __FP_FAST_FMAL
+#  define FP_FAST_FMAL 1
+# endif
+
 #endif /* ISO C99 */
 
 #ifndef __NO_LONG_DOUBLE_MATH