From b2eb2ff098b21a3f50d08688a437e55d8f089390 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 26 Feb 2008 22:01:11 +0000 Subject: [PATCH] Make gcc ignore the distinction between +0.0 and -0.0, this allows it to change x+0.0 to x. Though it alone does not allow gcc to remove x*0.0, that would also require -ffinite-math-only. Originally committed as revision 12252 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index c38ab939c..cbd5dac10 100755 --- a/configure +++ b/configure @@ -1824,6 +1824,7 @@ elif enabled optimizations; then fi fi check_cflags -fno-math-errno +check_cflags -fno-signed-zeros # PIC flags for shared library objects where they are needed if enabled shared; then -- 2.11.0