Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / other / large-size-array.C
blob900c50331697ac0176b208d4136dcfc077459812
1 /* { dg-do compile } */
2 #include <limits.h>
4 #ifdef __LP64__
5 #define DIM UINT_MAX>>1
6 #else
7 #define DIM USHRT_MAX>>1
8 #endif
10 int
11 sub (int *a)
13   return a[0];
16 int
17 main (void)
19   int a[DIM][DIM];  /* { dg-error "size of array 'a' is too large" } */
20   return sub (&a[0][0]);