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
Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
gomp
/
pr47963.c
blob
636a9542c3230799504899947661f36fc916dc25
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 "has non-integer type" } */
9
#pragma omp parallel private(A)
10
;
11
}