2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / consistency.vlad / layout / s-longdouble-a-char.c
blob0dfff4b74e9c78a53c18943a3c3eabcb1e4086df
1 #include <stdio.h>
3 static struct sss{
4 long double f;
5 char a[10];
6 } sss;
8 #define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
10 int main (void) {
11 printf ("++++Array of char in struct starting with longdouble:\n");
12 printf ("size=%d,align=%d\n",
13 sizeof (sss), __alignof__ (sss));
14 printf ("offset-longdouble=%d,offset-arrayof-char=%d,\nalign-longdouble=%d,align-arrayof-char=%d\n",
15 _offsetof (struct sss, f), _offsetof (struct sss, a),
16 __alignof__ (sss.f), __alignof__ (sss.a));
17 printf ("offset-char-a[5]=%d,align-char-a[5]=%d\n",
18 _offsetof (struct sss, a[5]),
19 __alignof__ (sss.a[5]));
20 return 0;