repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
gomp
/
pr47963.C
blob
6be4c0e18fb37bb6347061d382ef640b826d2313
1
// PR c/47963
2
// { dg-do compile }
3
// { dg-options "-fopenmp" }
4
5
void
6
foo (float n)
7
{
8
int A[n][n]; // { dg-error "could not convert|has non-integral type|converted constant expression" }
9
#pragma omp parallel private(A)
10
;
11
}