Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / gcc.c-torture / compile / vla-const-1.c
blob6acc3d83050b685c54c37b6eb0edbff1607c31db
1 /* Test TREE_CONSTANT VLA size: bug 27893. */
2 /* Origin: Joseph Myers <joseph@codesourcery.com> */
3 int a;
4 void g(void *);
5 void f(void) { int b[(__SIZE_TYPE__)&a]; g(b); }