mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-29 12:50:35 +00:00
28 lines
374 B
C
28 lines
374 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])
|
|
{
|
|
#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;
|
|
}
|