IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git] / gcc / testsuite / gcc.dg / vla-init-1.c
blob68e7d651210dac1ab2d6bf64aed40447ff2dc009
1 /* Test for tree-checking error when initializing a variable-length array
2 (not allowed): constructor_max_index needs to be an INTEGER_CST. */
3 /* Origin: Joseph Myers <jsm28@cam.ac.uk>. */
4 /* { dg-do compile } */
5 /* { dg-options "" } */
7 int a;
9 void
10 foo (void)
12 int x[a] = { 1 }; /* { dg-error "variable-sized object may not be initialized" "VLA init" } */
13 /* { dg-warning "excess elements in array initializer" "" { target *-*-* } 12 } */
14 /* { dg-warning "near initialization" "" { target *-*-* } 12 } */