2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / consistency.vlad / layout / s-pointer-zf-short.c
blob5b8134b254c44e8b0b49be8cdb2c6d29b1f43901
1 #include <stdio.h>
3 static struct sss{
4 char * f;
5 short :0;
6 int i;
7 } sss;
9 #define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
11 int main (void) {
12 printf ("+++short zerofield inside struct starting with pointer:\n");
13 printf ("size=%d,align=%d\n", sizeof (sss), __alignof__ (sss));
14 printf ("offset-pointer=%d,offset-last=%d,\nalign-pointer=%d,align-last=%d\n",
15 _offsetof (struct sss, f), _offsetof (struct sss, i),
16 __alignof__ (sss.f), __alignof__ (sss.i));
17 return 0;