blob: 6d5222249b64ec6cf77122b0f1bbd39ad3c061e3 [file] [log] [blame]
int
main ()
{
int i;
static int temp;
#pragma acc parallel reduction(+:temp)
{
temp++;
}
return 0;
}