Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
vla-const-2.c
blob: 5bbd9b5ebdbadb6f24681eb87537bf165f33a2cf [
file
] [
log
] [
blame
]
/* Test TREE_CONSTANT VLA size: bug 27893. */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-require-effective-target alloca } */
void
g
(
void
*);
void
f
(
void
)
{
int
b
[
1
/
0
];
g
(
b
);
}