mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 07:07:20 +00:00
28 lines
324 B
C
28 lines
324 B
C
/* { dg-do run } */
|
|
|
|
extern void abort (void);
|
|
|
|
volatile int count;
|
|
static int test (void)
|
|
{
|
|
return ++count > 0;
|
|
}
|
|
|
|
int i;
|
|
|
|
int
|
|
main ()
|
|
{
|
|
#pragma omp for lastprivate (i)
|
|
for (i = 0; i < 10; ++i)
|
|
{
|
|
int *p = &i;
|
|
if (test ())
|
|
continue;
|
|
abort ();
|
|
}
|
|
if (i != count)
|
|
abort ();
|
|
return 0;
|
|
}
|