blob: e6eea074bf0d5c45ed691bb21481acbaed302a7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* { dg-additional-options "-std=gnu89" } */
#define int unsigned
struct foo
{
int aa : 1;
int a : 9;
int c : 16;
int d : 6;
};
int
foo (a, b)
struct foo a;
{
return a.d == 0;
}
|