diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-26 22:01:11 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-26 22:01:11 +0000 |
commit | b2eb2ff098b21a3f50d08688a437e55d8f089390 (patch) | |
tree | b64a3f27f90f8be8b4661bd88f2b720c21b6b6f3 /configure | |
parent | f65c9da1403c8843fd35e2ee8e19faabf3bed8f3 (diff) | |
download | ffmpeg-b2eb2ff098b21a3f50d08688a437e55d8f089390.tar.gz |
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
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |