aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr39712.c
blob: 9846e33cd9fadb37a8a7874dd9782d5d163b05bf (plain)
1
2
3
4
5
6
7
8
9
/* { dg-do compile } */

int is_table[2][16];
int is_table_lsf[2][2][16];
void compute_stereo()
{
  int (*is_tab)[16];
  is_tab = is_table;
}