mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-29 12:50:35 +00:00
27 lines
344 B
C
27 lines
344 B
C
/* { dg-do run } */
|
|
/* { dg-options "-ftree-parallelize-loops=2 -O1 -fno-tree-loop-im" } */
|
|
|
|
#define N 1000
|
|
|
|
unsigned int i = 0;
|
|
|
|
static void __attribute__((noinline, noclone))
|
|
foo (void)
|
|
{
|
|
unsigned int z;
|
|
for (z = 0; z < N; ++z)
|
|
++i;
|
|
}
|
|
|
|
extern void abort (void);
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
foo ();
|
|
if (i != N)
|
|
abort ();
|
|
|
|
return 0;
|
|
}
|