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
* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
vla-const-2.c
blob
5bbd9b5ebdbadb6f24681eb87537bf165f33a2cf
1
/* Test TREE_CONSTANT VLA size: bug 27893. */
2
/* Origin: Joseph Myers <joseph@codesourcery.com> */
3
/* { dg-require-effective-target alloca } */
4
void
g
(
void
*);
5
void
f
(
void
) {
int
b
[
1
/
0
];
g
(
b
); }