blob: 1008f43a7e5c491b32395ad282cc7396d5b595b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* PR tree-optimization/53550 */
/* { dg-do compile } */
/* { dg-options "-O2 -fprefetch-loop-arrays -w" } */
int *
foo (int *x)
{
int *a = x + 10, *b = x, *c = a;
while (b != c)
*--c = *b++;
return x;
}
|