OSDN Git Service

2012-04-13 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / binop-notand6.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
3
4 int
5 foo (int a, int b)
6 {
7   return (a & !a) | (b & (b == 0));
8 }
9
10 /* { dg-final { scan-tree-dump-times "return 0" 1 "optimized" } } */
11 /* { dg-final { cleanup-tree-dump "optimized" } } */