PR lto/84212 - -Wno-* does not disable warnings from -flto link stage
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wstrict-aliasing-bogus-char-1.C
blobbdd24aca64a854c110547861b7f00ccceaabf0c2
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -Wstrict-aliasing -fstrict-aliasing" } */
5 int foo () {
6   int i;
7   char* c= reinterpret_cast<char*>(&i);  /* { dg-bogus "char" } */
8   c[1] = 1;
9   return i;