blob: 37d10bc5b682f94a14f374e3bb2b4e93ab97711e [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2" } */
int foo(int x)
{
return -(x == 0);
}
int bar(int x)
{
int t = __builtin_clz(x);
return -(t>>5);
}
/* { dg-final { scan-assembler-not "cntlzw" } } */