aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/Wstrict-aliasing-bogus-struct-included.c
blob: 382fecd6f5a9de6507ff5b6bd157e7e2138f69df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { dg-do compile } */
/* { dg-options "-O2 -Wstrict-aliasing -fstrict-aliasing" } */


struct U
{
  float f;
  int i;
};


int foo ()
{
  struct U u;
  float *pf = (float*)&u;  /* { dg-bogus "float included in struct U" } */
  *pf = 2.0;
  return u.i;
}