summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/binop-notand2a.c
blob: 40613548ea83c0e2d6f92f2f7303dda400b7cd9a (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */

int
foo (int a)
{
  return (!a & 1) != (a == 0);
}

/* { dg-final { scan-tree-dump-times "return 0" 1 "optimized" } } */