OSDN Git Service

PR c++/39554
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / Wstrict-aliasing-1.C
1 /* { dg-do compile } */
2 /* { dg-options "-Wstrict-aliasing=2 -O2" } */
3
4 double x;
5 int *foo(void)
6 {
7   return (int *)&x; /* { dg-warning "strict-aliasing" } */
8 }
9