aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/reassoc-10.c
blob: cdc277431ea585a22ac8bf6bd7f5ed5ff024b696 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */ 
/* { dg-options "-O2 -fdump-tree-optimized" } */
int main(int a, int b, int c, int d)
{
  /* Should become just a & b & c & d */
  int e = (a & b) & (c & d);
  int f = (c & a) & (b & d);
  return e & f;
}
/* { dg-final { scan-tree-dump-times "\\\& " 3 "optimized"} } */
/* { dg-final { cleanup-tree-dump "optimized" } } */