PR lto/84212 - -Wno-* does not disable warnings from -flto link stage
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wstrict-aliasing-bogus-struct-included.C
blob3f55c78c96d6709b7e356332bfb64b7246998d21
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -Wstrict-aliasing -fstrict-aliasing" } */
5 struct S {
6   int i;
7   float f;
8 };
10 int foo () {
11   struct S s;
12   s.i = 7;
13   float* f = &s.f;  /* { dg-bogus "float included in struct S" } */
14   *f = 2.0;
15   return s.i + (int)s.f;