Add new test to verify that the array index, limit, and stride are
[official-gcc.git] / gcc / testsuite / gcc.dg / binop-notand6a.c
blobb9fe4052d58e244f0c50cb30c17e651bb622a0ad
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
4 int
5 foo (unsigned long a, long b)
7 return (a & !a) | (b & (b == 0));
10 /* { dg-final { scan-tree-dump-times "return 0" 1 "optimized" } } */
11 /* { dg-final { cleanup-tree-dump "optimized" } } */