aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/reassoc-8.c
blob: b2ca4ae0302bb351d227fd959f2a4223ffd4f71e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-do compile } */ 
/* { dg-options "-O2 -fdump-tree-reassoc1" } */

int main(int a, int b, int c, int d, int e, int f, int g, int h)
{
  /* e & ~e -> 0 */
  int i = (a & 9) & (c & d);
  int j = (~e & d) & (~c & e);
  e = i & j;
  return e;
}
/* { dg-final { scan-tree-dump-times "= 0" 1 "reassoc1"} } */
/* { dg-final { cleanup-tree-dump "reassoc1" } } */