u_math.h: Remove redundant mingw32 ffs definition
authorMatt Turner <mattst88@gmail.com>
Mon, 9 May 2011 04:17:00 +0000 (00:17 -0400)
committerBrian Paul <brianp@vmware.com>
Thu, 12 May 2011 22:37:20 +0000 (16:37 -0600)
Signed-off-by: Matt Turner <mattst88@gmail.com>
Signed-off-by: Brian Paul <brianp@vmware.com>
src/gallium/auxiliary/util/u_math.h

index dad6a101fd7d23a6e3746e8a9f62b842adf2d310..ad2a1f835cafdaa2c975d1c7d82f0b573fc74fd3 100644 (file)
@@ -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.
  */