PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / cfgcleanup-1.c
blob53ce97340d20a384aec0529ecf559beb8b60a91b
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-dce2" } */
3 void
4 cleanup (int a, int b)
6 if (a)
7 if (b)
8 a = 1;
9 else
10 b = 1;
11 else if (a)
12 a = 1;
13 else
14 b = 1;
15 return;
17 /* Dce should get rid of the initializers and cfgcleanup should elliminate ifs */
18 /* { dg-final { scan-tree-dump-times "if " 0 "dce2"} } */