]> matita.cs.unibo.it Git - pkg-cerco/acc.git/blob - tests/GCCTestSuite/alias-8.c.expected
Package description and copyright added.
[pkg-cerco/acc.git] / tests / GCCTestSuite / alias-8.c.expected
1 // { dg-do compile }
2 // { dg-options "-Wstrict-aliasing=2 -fstrict-aliasing" }
3
4 struct s {
5   char    *p;
6 };
7
8 void
9 func(struct s *ptr)
10 {
11   *(void **)&ptr->p = 0; /* { dg-warning "type-punned pointer" } */
12 }