1 2 3 4
/* 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); }