blob: a027b317151ed522f58c1b19bc6f1972d2738ab5 [file] [log] [blame]
/* { dg-do compile } */
#include <stdint.h>
#define ARR_SIZE 1024
extern void foo (int32_t *bar, int16_t a)
{
for( int i = 0; i < ARR_SIZE;i++)
{
bar[i] = a + 1;
}
}