mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-12 11:29:30 +00: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;
|
||
|
}
|