summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/aarch64/pr71016.c
blob: f50d69395ce2a37ffce51409f0b77e60066faed2 (plain)
1
2
3
4
5
6
7
8
9
10
/* PR tree-optimization/71016 */
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* { dg-final { scan-assembler-not "sxtw" } } */

long int
foo (long int i)
{
  return i == 0 ? 17 : __builtin_clzl (i);
}