PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / alias-2.c
blobee384066d1ae4b7271e7b2c69d6f0f1e48282bee
1 // { dg-do compile }
2 // { dg-options "-Wstrict-aliasing=2 -fstrict-aliasing" }
4 struct foo {
5 char c;
6 char d;
7 short s;
8 int i;
9 } bar;
11 int
12 sub1 (long long int foobar)
14 struct foo *tmp = (struct foo *) &foobar; // { dg-warning "type-punned pointer will" }
15 return tmp->i;