aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr41181.c
blob: e1e48063a94f2cbab4d788e8e1dfde0b3064ce38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-require-effective-target ptr32plus } */
/* { dg-skip-if "The array is too big" { "avr-*-*" "pdp11-*-*" } { "*" } { "" } } */ 
char paths[1024];
static void x264_slicetype_path(char (*best_paths)[250], int n, int length)
{
    __builtin_memcpy (best_paths[n], paths, length);
}
void x264_slicetype_analyse(int n, int length)
{
    char best_paths[250][250];
    x264_slicetype_path (best_paths, n, length);
}