URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [gomp/] [pr47963.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c/47963
// { dg-do compile }
// { dg-options "-fopenmp" }
void
foo (float n)
{
int A[n][n]; // { dg-error "has non-integral type" }
#pragma omp parallel private(A)
;
}
Go to most recent revision | Compare with Previous | Blame | View Log