aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/reassoc-11.c
blob: f48f04e9980e2ed5dd1759ad23703fdda6059592 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */ 
/* { dg-options "-O2 -fdump-tree-reassoc1" } */
int main(int a, int b, int c, int d)
{
  /* All the xor's cancel each other out, leaving 0  */
  int e = (a ^ b) ^ (c ^ d);
  int f = (c ^ a) ^ (b ^ d);
  return e ^ f;
}
/* { dg-final { scan-tree-dump-times "= 0" 1 "reassoc1"} } */
/* { dg-final { cleanup-tree-dump "reassoc1" } } */