summaryrefslogtreecommitdiffstats
path: root/gcc/testsuite/gcc.dg/large-size-array-3.c
blob: 0b6149ba5a5e9144b582c502631b76598cac2756 (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)+1
#else
#define DIM 65536
#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]);
}
OpenPOWER on IntegriCloud