PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / loop-6.c
blob604476012384aa1cd7b0555474498f4c0f96d647
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -funswitch-loops -fdump-tree-unswitch-details -fdump-tree-optimized" } */
4 int ch;
5 int a[100];
7 void xxx(void)
9 int i;
11 for (i = 0; i < 100; i++)
13 if (ch)
14 a[i] = ch;
15 else
16 a[i] = i;
20 /* Loop should be unswitched. */
22 /* { dg-final { scan-tree-dump-times "Unswitching loop" 1 "unswitch" } } */
24 /* In effect there should be exactly three conditional jumps in the final program. */
26 /* { dg-final { scan-tree-dump-times "else" 3 "optimized" } } */