OSDN Git Service

* g++.dg/cdce3.C: Skip on alpha*-dec-osf5*.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / Wstrict-aliasing-4.C
1 /* { dg-do compile } */
2 /* { dg-options "-Wstrict-aliasing=2 -O2" } */
3
4 double x;
5
6 template <typename T>
7 T *foo(void)
8 {
9   int a[2];
10   float *y = (float *)a; /* { dg-bogus "strict-aliasing" } */
11   return (T *)&x; /* { dg-bogus "strict-aliasing" } */
12 }
13