From 2fdbbeca43e7b57095774e4228e6eea75a180fab Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Wed, 11 Jan 2012 19:02:26 -0500 Subject: [PATCH] Remove -ffast-math from default CFLAGS Fixes glsl-const-folding-01. inversesqrt(1.0) != 1.0 was evaluating as true. Signed-off-by: Matt Turner --- configure.ac | 3 --- 1 file changed, 3 deletions(-) diff --git a/configure.ac b/configure.ac index f3f5e3e..e13c4cf 100644 --- a/configure.ac +++ b/configure.ac @@ -176,9 +176,6 @@ esac dnl Add flags for gcc and g++ if test "x$GCC" = xyes; then CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -std=c99" - if test "x$CLANG" = "xno"; then - CFLAGS="$CFLAGS -ffast-math" - fi # Enable -fvisibility=hidden if using a gcc that supports it save_CFLAGS="$CFLAGS" -- 2.7.4