mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
26 lines
303 B
C
26 lines
303 B
C
// { dg-do run }
|
|
|
|
extern "C" 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)
|
|
{
|
|
if (test())
|
|
continue;
|
|
abort ();
|
|
}
|
|
if (i != count)
|
|
abort ();
|
|
return 0;
|
|
}
|