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