mirror of
https://github.com/autc04/Retro68.git
synced 2025-03-01 19:30:46 +00:00
14 lines
149 B
C
14 lines
149 B
C
|
/* { dg-do link } */
|
||
|
|
||
|
int
|
||
|
main (void)
|
||
|
{
|
||
|
#pragma acc parallel
|
||
|
#pragma acc loop
|
||
|
for (int i = 1; i < 10; i++)
|
||
|
for (;;)
|
||
|
;
|
||
|
|
||
|
return 0;
|
||
|
}
|