1/* Test TREE_CONSTANT VLA size: bug 27893.  */
2/* Origin: Joseph Myers <joseph@codesourcery.com> */
3/* { dg-require-effective-target alloca } */
4void g(void *);
5void f(void) { int b[1/0]; g(b); }
6