mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-15 10:17:40 +01:00
23 lines
365 B
C
23 lines
365 B
C
/* PR libgomp/80394 */
|
|
|
|
int
|
|
main ()
|
|
{
|
|
int x = 0;
|
|
#pragma omp parallel shared(x)
|
|
#pragma omp single
|
|
{
|
|
#pragma omp task depend(inout: x)
|
|
{
|
|
for (int i = 0; i < 100000; i++)
|
|
asm volatile ("" : : : "memory");
|
|
x += 5;
|
|
}
|
|
#pragma omp task if (0) depend(inout: x)
|
|
;
|
|
if (x != 5)
|
|
__builtin_abort ();
|
|
}
|
|
return 0;
|
|
}
|