rt_gccstream/gcc/testsuite/gcc.c-torture/compile/vla-const-2.c

5 lines
151 B
C

/* Test TREE_CONSTANT VLA size: bug 27893. */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
void g(void *);
void f(void) { int b[1/0]; g(b); }