mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
29 lines
420 B
C
29 lines
420 B
C
|
/* { dg-do run } */
|
||
|
/* { dg-options "-O -ftree-parallelize-loops=4 -fno-tree-ch -fno-tree-dominator-opts" } */
|
||
|
|
||
|
void abort(void);
|
||
|
|
||
|
int d[1024], e[1024];
|
||
|
|
||
|
int foo (void)
|
||
|
{
|
||
|
int s = 0;
|
||
|
int i;
|
||
|
for (i = 0; i < 1024; i++)
|
||
|
s += d[i] - e[i];
|
||
|
return s;
|
||
|
}
|
||
|
|
||
|
int main ()
|
||
|
{
|
||
|
int i;
|
||
|
for (i = 0; i < 1024; i++)
|
||
|
{
|
||
|
d[i] = i * 2;
|
||
|
e[i] = i;
|
||
|
}
|
||
|
if (foo () != 1023 * 1024 / 2)
|
||
|
abort ();
|
||
|
return 0;
|
||
|
}
|