Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.target / i386 / bitfield2.c
blob54f5c8dbfd309289b5d2c90e9bcb2327a7b8b854
1 // Test for bitfield alignment in structs on IA-32
2 // { dg-do run { target i?86-*-* x86_64-*-* } }
3 // { dg-require-effective-target ilp32 }
4 // { dg-options "-O2" }
5 // { dg-options "-mno-align-double -mno-ms-bitfields" { target i?86-*-interix* i?86-*-cygwin* i?86-*-mingw* } }
7 extern void abort (void);
8 extern void exit (int);
10 struct X {
11 char a;
12 long long : 0;
13 char b;
14 } x;
16 int main () {
17 if (&x.b - &x.a != 4)
18 abort ();
19 if (sizeof (x) != 5)
20 abort ();
22 exit (0);