blob: 3b7679ff9f536850718f14c0196f2c87fc98eba5 [file] [log] [blame]
/* PR target/59874 */
/* { dg-do compile } */
/* { dg-options "-O2 -mlzcnt -masm=att" } */
/* { dg-final { scan-assembler "lzcntw" } } */
unsigned int
foo (unsigned short x)
{
return x ? __builtin_clzs (x) : 16U;
}