mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 12:32:52 +00:00
Ifdef __builtin_ctz to not be used for consoles
This commit is contained in:
parent
0c87175a61
commit
94545127a6
@ -55,7 +55,7 @@ static INLINE unsigned compat_clz_u16(uint16_t val)
|
||||
}
|
||||
|
||||
/* Count Trailing Zero */
|
||||
#if defined(__GNUC__)
|
||||
#if defined(__GNUC__) && !defined(RARCH_CONSOLE)
|
||||
static INLINE int compat_ctz(unsigned x)
|
||||
{
|
||||
return __builtin_ctz(x);
|
||||
|
Loading…
x
Reference in New Issue
Block a user