URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [Wstrict-aliasing-bogus-struct-included.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* { 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; }
Go to most recent revision | Compare with Previous | Blame | View Log