Add new test to verify that the array index, limit, and stride are
[official-gcc.git] / gcc / testsuite / gcc.dg / large-size-array.c
blob6ea760669347af25b006d32f4cda8b59d4a3a601
1 /* { dg-do compile } */
2 #include <limits.h>
4 #if defined(__LP64__) || defined(_WIN64)
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]);