gcc/gcc/testsuite/gcc.dg/binop-notand5.c

11 lines
207 B
C

/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
int
foo (int a, int b)
{
return (a & (a == 0)) | (b & !b);
}
/* { dg-final { scan-tree-dump-times "return 0" 1 "optimized" } } */