mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-22 05:37:44 +01:00
25 lines
287 B
C
25 lines
287 B
C
|
/* { dg-do run } */
|
||
|
|
||
|
extern void abort (void);
|
||
|
|
||
|
volatile int count;
|
||
|
static int test(void)
|
||
|
{
|
||
|
return ++count > 0;
|
||
|
}
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
int i;
|
||
|
#pragma omp for
|
||
|
for (i = 0; i < 10; ++i)
|
||
|
{
|
||
|
if (test())
|
||
|
continue;
|
||
|
abort ();
|
||
|
}
|
||
|
if (i != count)
|
||
|
abort ();
|
||
|
return 0;
|
||
|
}
|