blob: 6f61be5ae8ae157007ed4e32e7962b78d5fca04e [file] [log] [blame]
/* { dg-do compile } */
/* { dg-require-effective-target ti_c64xp } */
/* { dg-options "-O2" } */
/* { dg-final { scan-assembler-not "call" } } */
long long foo (long long x)
{
return __builtin_ffsll (x);
}
long long bar (long long x)
{
return __builtin_clzll (x);
}
long long baz (long long x)
{
return __builtin_ctzll (x);
}