aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/bitfield3.c
blob: 1a161597cfeb36377cb6c8ab3afaf0bd39b4bebd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Test for bitfield alignment in structs on IA-32
// { dg-do run }
// { dg-options "-O2" }
// { dg-additional-options "-mno-align-double -mno-ms-bitfields" { target *-*-interix* } }
// { dg-additional-options "-mno-ms-bitfields" { target *-*-mingw* } }

extern void abort (void);
extern void exit (int);

struct X {
  int : 32;
};

struct Y {
  int i : 32;
};

int main () {
  if (__alignof__(struct X) != 1)
    abort ();
  if (__alignof__(struct Y) != 4)
    abort ();
  
  exit (0);
}