summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/bitfield5.C
blob: cb24c65d723b86c65fa54644a27b7b9eeb149056 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */
/* { dg-options "-Wno-packed-bitfield-compat" } */
/* { dg-options "-Wno-packed-bitfield-compat -mno-ms-bitfields" { target i?86-*-netware } } */

struct t
{
  char a:4;
  char b:8 __attribute__ ((packed));
  char c:4;
};

int assrt[sizeof (struct t) == 2 ? 1 : -1];