blob: 87f5ef9d1719f2c8c860cc0c8c8658e9aff5ed86 [file] [log] [blame]
/* PR 41673: bogus -Wstrict-aliasing warning from VLA dereference. */
/* { dg-do compile } */
/* { dg-options "-std=gnu99 -O2 -Wall" } */
/* { dg-require-effective-target alloca } */
int main(int argc, char *argv[])
{
float x[argc];
float y[argc];
return 0 == __builtin_memcpy(y, x, argc * sizeof(*x));
}