Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / pr90733.c
blob7d2a7fb559ad9dc698f1731e12bddeb51bb2f925
1 /* PR debug/90733 */
2 /* { dg-do compile } */
3 /* { dg-options "-g -O2 -w" } */
5 struct S { unsigned a : 1; };
6 union U { struct S b; _Complex unsigned c; };
8 union U
9 foo (union U d)
11 union U e = d;
12 return e;
15 int
16 bar (void)
18 union U x, y;
19 x.c = x.b.a;
20 y = foo (x);
21 return x.c != y.c;