OSDN Git Service

Latest updates from FSF 4.7 branch
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / pr41181.c
1 /* { dg-skip-if "The array is too big" { "avr-*-*" "m32c-*-*" "pdp11-*-*" "xstormy16-*-*" } { "*" } { "" } } */ 
2 char paths[1024];
3 static void x264_slicetype_path(char (*best_paths)[250], int n, int length)
4 {
5     __builtin_memcpy (best_paths[n], paths, length);
6 }
7 void x264_slicetype_analyse(int n, int length)
8 {
9     char best_paths[250][250];
10     x264_slicetype_path (best_paths, n, length);
11 }