blob: 2ea798207dc4f91a3e6a04ad7b2444aec4b96d89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Test for bitfield alignment in structs on IA-32
// { dg-do run { target i?86-*-* } }
// { dg-options "-O2" }
// { dg-options "-mno-align-double -mno-ms-bitfields" { target *-*-interix* } }
extern void abort (void);
extern void exit (int);
struct X {
char a;
long long : 0;
char b;
} x;
int main () {
if (&x.b - &x.a != 4)
abort ();
if (sizeof (x) != 5)
abort ();
exit (0);
}
|