PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / bitfld-18.c
blob748669543c167ceb324fe4ff95c7541ed963ebc9
1 /* { dg-do compile } */
2 /* { dg-options "-Wno-packed-bitfield-compat" } */
3 /* { dg-options "-Wno-packed-bitfield-compat -mno-ms-bitfields" { target { i?86-*-mingw* x86_64-*-mingw* } } } */
5 struct t
7 char a:4;
8 char b:8 __attribute__ ((packed));
9 char c:4;
12 int assrt[sizeof (struct t) == 2 ? 1 : -1];