PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / 20020530-1.c
blobb2d0ecda511444d993146a8dd23faeb15dafeae6
1 /* PR c/6809
2 Test -fverbose-asm with unnamed fields. */
3 /* { dg-do compile } */
4 /* { dg-options "-fverbose-asm" } */
6 typedef union U
8 struct
10 unsigned int a;
11 int b;
13 long long c;
14 } *T;
16 int foo (T x)
18 int r = x->a + x->b;
19 return r;