blob: 72094f6bdb92208d7dda2070e3fb251dac034bb6 [file] [log] [blame]
/* Verify the auto initialization of nested VLA. */
/* { dg-do compile } */
/* { dg-options "-ftrivial-auto-var-init=zero -fdump-rtl-expand" } */
void g(void *);
void foo(int a)
{
int x[a][a];
g(x);
}
/* { dg-final { scan-rtl-dump "__builtin_memset" "expand" } } */