aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/large-size-array.c
blob: e8d9791480bad118053b332fee65f26c90a20d5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do compile } */
#include <limits.h>

#ifdef __LP64__
#define DIM UINT_MAX>>1
#else
#define DIM USHORT_MAX>>1
#endif

int
sub (int *a)
{
  return a[0];
}

int
main (void)
{
  int a[DIM][DIM];  /* { dg-error "size of array 'a' is too large" } */
  return sub (&a[0][0]);
}