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…
Reference in New Issue