9ef64248fe
libgomp/ * testsuite/libgomp.oacc-c-c++-common/crash-1.c: Make it a "link" test, and don't hardcode -O0. From-SVN: r239125
28 lines
325 B
C
28 lines
325 B
C
/* { dg-do link } */
|
|
|
|
/* For -O0, ICEd in nvptx backend due to unexpected frame size. */
|
|
#pragma acc routine worker
|
|
void
|
|
worker_matmul (int *c, int i)
|
|
{
|
|
int j;
|
|
|
|
#pragma acc loop
|
|
for (j = 0; j < 4; j++)
|
|
c[j] = j;
|
|
}
|
|
|
|
|
|
int
|
|
main ()
|
|
{
|
|
int c[4];
|
|
|
|
#pragma acc parallel
|
|
{
|
|
worker_matmul (c, 0);
|
|
}
|
|
|
|
return 0;
|
|
}
|