blob: 293f7e4067a3113bd28c5e4d0a4cb312d11618f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* { dg-do compile } */
/* { dg-additional-options "-fno-tree-pre" } */
int a[2000];
int s292_im1;
void
s292() {
for (int i = 0; i < 2000; i++) {
a[i] = s292_im1;
s292_im1 = i;
}
}
|