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
Small ChangeLog tweak.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
Walloca-11.c
blob
8484f9c778265bca1bfbb3219ebbab83f6f1c109
1
/* { dg-do compile } */
2
/* { dg-require-effective-target alloca } */
3
/* { dg-options "-Walloca -O2" } */
4
5
// Make sure we don't warn on VLA with -Walloca.
6
7
void
f
(
void
*);
8
9
void
h1
(
unsigned
n
)
10
{
11
int
a
[
n
];
12
f
(
a
);
13
}