OSDN Git Service

2008-01-02 Sebastian Pop <sebastian.pop@amd.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / tree-ssa / pr34458.c
1 /* { dg-do compile } */
2 /* { dg-options "-O3" } */
3
4 struct A
5 {
6   int x[8];
7 };
8
9 void foo(struct A* p, long long j)
10 {
11   int i;
12   for (i = 0; i < 2; ++i)
13     p->x[i+j+1] = p->x[i+j];
14 }