summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/Wstrict-aliasing-bogus-vla-1.c
blob: 87f5ef9d1719f2c8c860cc0c8c8658e9aff5ed86 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* 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));
}