* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / slsr-25.c
blob9052e2a9bbba504fdc181e06b890be8508681ada
1 /* Verify straight-line strength reduction for multiply candidates
2 with variable stride and control flow, increment = -1. */
4 /* { dg-do compile } */
5 /* { dg-options "-O3 -fdump-tree-optimized" } */
7 int
8 f (int n, int x, int stride)
10 int a, x1, x2, x3;
12 a = x * stride;
14 if (n > 64)
16 x1 = x - 1;
17 a += x1 * stride;
18 x2 = x1 - 1;
19 a += x2 * stride;
21 else
23 x3 = x - 1;
24 a += x3 * stride;
27 return a;
30 /* { dg-final { scan-tree-dump-times " \\* " 1 "optimized" } } */