URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [alias-8.c] - Rev 826
Compare with Previous | Blame | View Log
// { dg-do compile } // { dg-options "-Wstrict-aliasing=2 -fstrict-aliasing" } struct s { char *p; }; void func(struct s *ptr) { *(void **)&ptr->p = 0; /* { dg-warning "type-punned pointer" } */ }