2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / binop-notand5.c
blob463f19b04da33f1a81d539f987ce2adbcc74be3d
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
4 int
5 foo (int a, int b)
7 return (a & (a == 0)) | (b & !b);
10 /* { dg-final { scan-tree-dump-times "return 0" 1 "optimized" } } */
11 /* { dg-final { cleanup-tree-dump "optimized" } } */