Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / warn / Wstrict-aliasing-4.C
blobe877c70fb1d06466f99c23b586c257ad9a22c00e
1 /* { dg-do compile } */
2 /* { dg-options "-Wstrict-aliasing=2 -O2" } */
4 double x;
6 template <typename T>
7 T *foo(void)
9   int a[2];
10   float *y = (float *)a; /* { dg-bogus "strict-aliasing" } */
11   return (T *)&x; /* { dg-bogus "strict-aliasing" } */