summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/binop-notand1.c
blob: 7a56aa6128e1500b69e876dd6b7cdd5a5697b5d2 (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);
}

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