OSDN Git Service

2008-07-28 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / tree-ssa / reassoc-8.c
1 /* { dg-do compile } */ 
2 /* { dg-options "-O2 -fdump-tree-reassoc1" } */
3
4 int main(int a, int b, int c, int d, int e, int f, int g, int h)
5 {
6   /* e & ~e -> 0 */
7   int i = (a & 9) & (c & d);
8   int j = (~e & d) & (~c & e);
9   e = i & j;
10   return e;
11 }
12 /* { dg-final { scan-tree-dump-times "= 0" 1 "reassoc1"} } */
13 /* { dg-final { cleanup-tree-dump "reassoc1" } } */