blob: 9f617162a4d3eec044d1140b33f11d0e4c29a50b [file] [log] [blame]
#include <stdio.h>
static struct sss{
short f;
long long :0;
int i;
} sss;
#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
int main (void) {
printf ("+++longlong zerofield inside struct starting with short:\n");
printf ("size=%d,align=%d\n", sizeof (sss), __alignof__ (sss));
printf ("offset-short=%d,offset-last=%d,\nalign-short=%d,align-last=%d\n",
_offsetof (struct sss, f), _offsetof (struct sss, i),
__alignof__ (sss.f), __alignof__ (sss.i));
return 0;
}