OSDN Git Service

2010-01-26 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr39712.c
1 /* { dg-do compile } */
2
3 int is_table[2][16];
4 int is_table_lsf[2][2][16];
5 void compute_stereo()
6 {
7   int (*is_tab)[16];
8   is_tab = is_table;
9 }