PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / Wstrict-aliasing-bogus-never-dereferenced.c
blobfd3f767ac8618e082481cc1e03d970fd2e6f9a5d
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -Wstrict-aliasing -fstrict-aliasing" } */
5 int foo ()
7 int x = 10;
8 int *p;
9 float *q;
11 q = (float*) &x; /* { dg-bogus "not referenced" } */
13 return x;