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

int
foo (int a, int b)
{
  return (a & !a) | (b & (b == 0));
}

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