aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/Wstrict-aliasing-bogus-vla-1.c
blob: e9f63d36872e19412da685d1b517c5926f652dc3 (plain)
1
2
3
4
5
6
7
8
9
10
/* PR 41673: bogus -Wstrict-aliasing warning from VLA dereference.  */
/* { dg-do compile } */
/* { dg-options "-std=gnu99 -O2 -Wall" } */

int main(int argc, char *argv[])
{
    float x[argc];
    float y[argc];
    return 0 == __builtin_memcpy(y, x, argc * sizeof(*x));
}