* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / slsr-23.c
bloba025cbeec9f66a361151866daf4b04eab40c0b82
1 /* Verify straight-line strength reduction for multiply candidates
2 with variable stride and control flow. */
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;
13 x1 = x + 3;
14 a += x1 * stride;
16 if (n > 64)
18 x2 = x1 + 3;
19 a += x2 * stride;
20 x3 = x2 + 3;
21 a += x3 * stride;
24 return a;
27 /* { dg-final { scan-tree-dump-times " \\* stride" 1 "optimized" } } */
28 /* { dg-final { scan-tree-dump-times " \\* 3" 1 "optimized" } } */