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
/
vla-4.c
blob
e784c74058c1f3057692ae218e1b4358424aaa48
1
// { dg-do compile }
2
/* { dg-require-effective-target alloca } */
3
4
void
foo
(
int
n
,
int
i
)
5
{
6
int
A
[
n
];
7
8
#pragma omp parallel firstprivate(A)
9
{
10
A
[
i
] =
1
;
11
}
12
}