aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/abi/bitfield8.C
blob: 6130ae45739b7d1747c7fc72c906210e9686b0e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// { dg-do run { target i?86-*-* } }
// { dg-options "-fabi-version=0" }
// { dg-skip-if "" { i?86-*-* } { "-m64" } { "" } }

struct A { 
  virtual void f() {}
  int f1 : 1; 
};

struct B : public A {
  int f2 : 31;
  int f3 : 4; 
  int f4 : 3;
};

int main ()
{
  if (sizeof (B) != 16)
    return 1;
}