From: Matt Turner Date: Mon, 9 May 2011 04:17:00 +0000 (-0400) Subject: u_math.h: Remove redundant mingw32 ffs definition X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=48a0a096f878d1e627226eae520847063473b17f;p=mesa.git u_math.h: Remove redundant mingw32 ffs definition Signed-off-by: Matt Turner Signed-off-by: Brian Paul --- diff --git a/src/gallium/auxiliary/util/u_math.h b/src/gallium/auxiliary/util/u_math.h index dad6a101fd7..ad2a1f835ca 100644 --- a/src/gallium/auxiliary/util/u_math.h +++ b/src/gallium/auxiliary/util/u_math.h @@ -413,10 +413,6 @@ unsigned ffs( unsigned u ) #define ffs __builtin_ffs #endif -#ifdef __MINGW32__ -#define ffs __builtin_ffs -#endif - /* Could also binary search for the highest bit. */