blob: 111f5f28c4270e3ad96f23245d0175824966977e [file] [log] [blame]
// Test for bitfield alignment in structs on IA-32
// { dg-do run { target i?86-*-* x86_64-*-* } }
// { dg-options "-O2" }
// { dg-options "-mno-align-double -mno-ms-bitfields" { target *-*-interix* } }
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);
}