PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / reassoc-3.c
blob178e6a4482266df1f3fb42a048b6a6b7c903a142
1 /* { dg-options "" } */
2 int main(int a, int b, int c, int d)
4 int e = (a & ~b) & (~c & d);
5 int f = (~c & a) & (b & ~d);
6 return (e & f);