mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
16 lines
186 B
C
16 lines
186 B
C
/* { dg-do compile } */
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
int i, j;
|
|
|
|
#pragma acc parallel loop tile(2,3)
|
|
for (i = 1; i < 10; i++)
|
|
for (j = 1; j < 10; j++)
|
|
for (;;)
|
|
;
|
|
|
|
return i + j;
|
|
}
|