diff options
author | Matt Turner <mattst88@gmail.com> | 2011-05-09 00:17:00 -0400 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2011-05-12 16:37:20 -0600 |
commit | 48a0a096f878d1e627226eae520847063473b17f (patch) | |
tree | 238134f80a860e61df9612066b1e22b5676e2775 | |
parent | 184bb09ff5cf2715dfee91e25ec20cbaa2e4445c (diff) | |
download | external_mesa3d-48a0a096f878d1e627226eae520847063473b17f.zip external_mesa3d-48a0a096f878d1e627226eae520847063473b17f.tar.gz external_mesa3d-48a0a096f878d1e627226eae520847063473b17f.tar.bz2 |
u_math.h: Remove redundant mingw32 ffs definition
Signed-off-by: Matt Turner <mattst88@gmail.com>
Signed-off-by: Brian Paul <brianp@vmware.com>
-rw-r--r-- | src/gallium/auxiliary/util/u_math.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/util/u_math.h b/src/gallium/auxiliary/util/u_math.h index dad6a10..ad2a1f8 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. */ |