C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / bitf.c
blobe6eea074bf0d5c45ed691bb21481acbaed302a7b
1 /* { dg-additional-options "-std=gnu89" } */
3 #define int unsigned
5 struct foo
7 int aa : 1;
8 int a : 9;
9 int c : 16;
10 int d : 6;
14 int
15 foo (a, b)
16 struct foo a;
18 return a.d == 0;