PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr47201.c
blob11e1f2ade3a3c7861708658aff181b55924c4091
1 /* PR target/47201 */
2 /* { dg-do compile } */
3 /* { dg-options "-O -fpic -g" { target fpic } } */
5 union U
7 __UINTPTR_TYPE__ m;
8 float d;
9 } u;
11 int
12 foo (void)
14 union U v = {
15 (__UINTPTR_TYPE__)&u
17 return u.d == v.d;