Corrected date in changelog
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / phi-opt-3.c
blob9c8ebaf02dc8cd5d15a94c3cd3617bcf34164018
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdump-tree-optimized" } */
4 int f(int a, int b)
6 if (a == 0)
7 return 0;
8 if (a != b)
9 return a;
10 return a;
13 /* There should be no ifs as the PHI arguments, we did not
14 optimize this before because PHI-OPT did not look at
15 PHIs which have more than two arguments. */
16 /* { dg-final { scan-tree-dump-times "if" 0 "optimized"} } */