aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/powerpc/ppc-negeq0-1.c
blob: 0386ecba7ca9d930c0998fc3607d8c8420e0b554 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* { dg-do compile } */
/* { dg-options "-O2" } */

long foo(long x)
{
  return -(x == 0);
}

long bar(long x)
{
  long t = __builtin_clzl(x);
  return -(t>>(sizeof(long) == 8 ? 6 : 5));
}

/* { dg-final { scan-assembler-not "cntlz" } } */