28 lines
382 B
C
28 lines
382 B
C
/* { dg-do run } */
|
|
|
|
#include <string.h>
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
int l = 0;
|
|
int b[3][3];
|
|
int i, j;
|
|
|
|
memset (b, '\0', sizeof (b));
|
|
|
|
#pragma acc parallel copy(b[0:3][0:3]) copy(l)
|
|
{
|
|
#pragma acc loop collapse(2) reduction(+:l)
|
|
for (i = 0; i < 2; i++)
|
|
for (j = 0; j < 2; j++)
|
|
if (b[i][j] != 16)
|
|
l += 1;
|
|
}
|
|
|
|
if (l != 2 * 2)
|
|
__builtin_abort();
|
|
|
|
return 0;
|
|
}
|