mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-02 18:53:22 +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;
|
|
}
|