blob: 3bee7cd37007a4a1fed94ee45c0d699bd2a7fd16 [file] [log] [blame]
// Test for bitfield alignment in structs on IA-32
// { dg-do run }
// { dg-options "-O2" }
// { 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);
}