OSDN Git Service

* gcc.dg/vect/vect-116.c: Add vect_int target requirement.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / 20020530-1.c
1 /* PR c/6809
2    Test -fverbose-asm with unnamed fields.  */
3 /* { dg-do compile } */
4 /* { dg-options "-fverbose-asm" } */
5
6 typedef union U
7 {
8   struct
9   {
10     unsigned int a;
11     int b;
12   };
13   long long c;
14 } *T;
15
16 int foo (T x)
17 {
18   int r = x->a + x->b;
19   return r;
20 }