Allow __FAST_MATH__ be defined if TEST_FAST_MATH is also defined.

This commit is contained in:
Ulrich Drepper 2002-07-17 00:00:27 +00:00
parent 7b824e9443
commit 147cb63f94

View File

@ -4,7 +4,7 @@
/* Another evil option when it comes to compiling the C library is
* --ffast-math since it alters the ABI. */
#ifdef __FAST_MATH__
#if defined __FAST_MATH__ && !defined TEST_FAST_MATH
# error "glibc must not be compiled with -ffast-math"
#endif