From: Ulrich Drepper Date: Wed, 17 Jul 2002 00:00:27 +0000 (+0000) Subject: Allow __FAST_MATH__ be defined if TEST_FAST_MATH is also defined. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=147cb63f9477ad213df2aca52e758aa9030a042c;p=thirdparty%2Fglibc.git Allow __FAST_MATH__ be defined if TEST_FAST_MATH is also defined. --- diff --git a/config.h.in b/config.h.in index c7e7dd3818c..4ab3c886713 100644 --- a/config.h.in +++ b/config.h.in @@ -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