* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / vla-const-2.c
blob5bbd9b5ebdbadb6f24681eb87537bf165f33a2cf
1 /* Test TREE_CONSTANT VLA size: bug 27893. */
2 /* Origin: Joseph Myers <joseph@codesourcery.com> */
3 /* { dg-require-effective-target alloca } */
4 void g(void *);
5 void f(void) { int b[1/0]; g(b); }