blob: 0b751bf409dd514a83609f78855eca5bbe0f5275 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O3 -std=gnu99" } */
char foo (char *x)
{
return *x;
}
void bar (char *x)
{
void *arr[foo (x)] __attribute__((unused));
}
void baz (char *x)
{
bar (x);
}