aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/pr65217.c
blob: d5c9be5b9ef22668ce5c8762adc3f361a050eff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */
/* { dg-options "-O" } */
/* { dg-final { scan-assembler-not "negl" } } */
/* { dg-final { scan-assembler-not "andl" } } */

int 
test(int n)
{
  if ((n & -n) != n)
    __builtin_unreachable();
  return n;
}