aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/msp.c
blob: 5d350fd5ee04aaf61cfdaac392d147299889549d (plain)
1
2
3
4
5
6
7
8
9
10
#ifdef STACK_SIZE
# define A_SIZE (STACK_SIZE/sizeof(int))
#else
# define A_SIZE 16384
#endif
foo ()
{
  int a[A_SIZE];
  bar (a);
}