diff options
author | Vinson Lee <[email protected]> | 2011-12-28 00:36:51 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2011-12-28 23:27:55 -0800 |
commit | 0ddb759991c1b39baf04cbe366328630bceeaca7 (patch) | |
tree | 1c27b683a3e6158250301f81bac0fd768fbcdc6a /src | |
parent | 11cdf24d15763131a7ab4b366cad78116884d045 (diff) |
mesa: Use __builtin_ffsll on Mac OS X.
Fixes this GCC warning.
arrayobj.c: In function '_mesa_update_array_object_max_element':
arrayobj.c:310: warning: implicit declaration of function 'ffsll'
Signed-off-by: Vinson Lee <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/imports.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index d5e3859f822..b7e87439f4c 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -568,7 +568,7 @@ _mesa_init_sqrt_table(void); #ifdef __GNUC__ -#if defined(__MINGW32__) || defined(__CYGWIN__) || defined(ANDROID) +#if defined(__MINGW32__) || defined(__CYGWIN__) || defined(ANDROID) || defined(__APPLE__) #define ffs __builtin_ffs #define ffsll __builtin_ffsll #endif |