aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr44788.c
blob: b570f65ff92eaf5f5882371b555b2a38d5e7c44c (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-require-stack-size "1060*4+4" } */

void joint_decode(float* mlt_buffer1, int t) {
    int i;
    float decode_buffer[1060];
    foo(decode_buffer);
    for (i=0; i<10 ; i++) {
        mlt_buffer1[i] = i * decode_buffer[t];
    }
}