PR71206: inconsistent types after match.pd transformation
[gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / 71206.c
1 /* { dg-do compile } */
2 /* { dg-options "-O" } */
3
4 int f(int d, unsigned b) {
5 int i2 = b ^ 1;
6 int i4 = d ^ 1;
7 return i2 ^ i4;
8 }